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 0652ca6 commit db06f37Copy full SHA for db06f37
ci/release-win.sh
@@ -6,7 +6,11 @@ source ./ci/lib-deploy.sh
6
./ci/build.sh
7
8
# Sigh, go find paths again
9
-export PATH="/c/Program Files/MIT/Kerberos/bin:$PATH"
+if python -c "assert __import__('sys').maxsize <= 2**32"; then
10
+ export PATH="/c/Program Files (x86)/MIT/Kerberos/bin:$PATH"
11
+else
12
+ export PATH="/c/Program Files/MIT/Kerberos/bin:$PATH"
13
+fi
14
15
# build the wheel
16
python -m pip install wheel
0 commit comments