Skip to content

Commit

Permalink
fix bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Sep 20, 2024
1 parent e19080f commit d9b78c5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .evergreen/hatch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ if ! command -v hatch > /dev/null ; then
;;
esac
curl -L -o hatch.tgz https://github.com/pypa/hatch/releases/download/hatch-v1.12.0/hatch-$target.tar.gz
tar xfz hatch.tgz
mv hatch .bin
rm hatch.tgz
tar xfz hatch.tgz
rm hatch.tgz
mkdir -p .bin
mv hatch .bin/
hatch --version
fi

HATCH_PYTHON="$PYTHON_BINARY" hatch run "$@"

0 comments on commit d9b78c5

Please sign in to comment.