From 426354ce349635aef55e5d24ce6eadec0147573e Mon Sep 17 00:00:00 2001 From: Curtis Rueden Date: Tue, 7 Nov 2023 11:27:23 -0600 Subject: [PATCH] CI: tweak env var setting to satisfy Windows node --- .github/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/build.sh b/.github/build.sh index 44a7909d1..d1716aef3 100755 --- a/.github/build.sh +++ b/.github/build.sh @@ -1,4 +1,5 @@ #!/bin/sh curl -fsLO https://raw.githubusercontent.com/scijava/scijava-scripts/master/ci-build.sh # NB: Only the Linux CI node should deploy build artifacts. -NO_DEPLOY=$(test "$(uname)" = Linux || echo 1) sh ci-build.sh +export NO_DEPLOY=$(test "$(uname)" = Linux || echo 1) +sh ci-build.sh