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 c55099c commit 8e7c559Copy full SHA for 8e7c559
setup.sh
@@ -34,7 +34,9 @@ fi
34
# Install rust compiler
35
echo "Installing rust compiler"
36
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.76
37
-. $HOME/.cargo/env
+if [[ "$OSTYPE" != "msys"* ]]; then # not Windows
38
+ . $HOME/.cargo/env
39
+fi
40
cargo install cbindgen
41
# Setup Poetry
42
echo "Installing poetry"
0 commit comments