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 6b4fc2f commit f718d6dCopy full SHA for f718d6d
.evergreen/scripts/install-dependencies.sh
@@ -26,6 +26,10 @@ function _pip_install() {
26
# Ensure just is installed.
27
if ! command -v just 2>/dev/null; then
28
# On most systems we can install directly.
29
+ _TARGET=""
30
+ if [ "Windows_NT" = "${OS:-}" ]; then
31
+ TARGET="--target x86_64-pc-windows-msvc"
32
+ fi
33
echo "Installing just..."
34
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- $_TARGET --to "$_BIN_DIR" || {
35
_pip_install rust-just just
0 commit comments