Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 53b6733

Browse files
committedNov 7, 2023
CI: tweak build script to satisfy Windows node
1 parent 43164ba commit 53b6733

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎.github/build.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
#!/bin/sh
1+
#!/bin/bash
2+
echo "Downloading ci-build script..."
23
curl -fsLO https://raw.githubusercontent.com/scijava/scijava-scripts/master/ci-build.sh
4+
chmod +x ci-build.sh
5+
36
# NB: Only the Linux CI node should deploy build artifacts.
4-
NO_DEPLOY=$(test "$(uname)" = Linux || echo 1) sh ci-build.sh
7+
export NO_DEPLOY=$(test "$(uname)" = Linux || echo 1)
8+
9+
echo "Running ci-build script..."
10+
./ci-build.sh

0 commit comments

Comments
 (0)
Please sign in to comment.