We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a911245 commit 9e38c54Copy full SHA for 9e38c54
.evergreen/hatch.sh
@@ -29,6 +29,9 @@ else # Set up virtualenv before installing hatch
29
# Ensure hatch does not write to user or global locations.
30
touch hatch_config.toml
31
HATCH_CONFIG=$(pwd)/hatch_config.toml
32
+ if [ "Windows_NT" = "$OS" ]; then # Magic variable in cygwin
33
+ HATCH_CONFIG=$(cygpath -m "$HATCH_CONFIG")
34
+ fi
35
export HATCH_CONFIG
36
hatch config restore
37
hatch config set dirs.data ".hatch/data"
0 commit comments