Skip to content

Commit 609c7ef

Browse files
committed
Fix bad $PATH when building MacOS
The previous release mistakenly distributed the wrong version of node... Very sad. See #1710 (comment)
1 parent 5a6411f commit 609c7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/steps/release-packages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ main() {
66

77
if [[ $OSTYPE == darwin* ]]; then
88
curl -L https://nodejs.org/dist/v14.4.0/node-v14.4.0-darwin-x64.tar.gz | tar -xz
9-
PATH="$PATH:node-v14.4.0-darwin-x64/bin"
9+
PATH="$PWD/node-v14.4.0-darwin-x64/bin:$PATH"
1010
fi
1111

1212
# https://github.com/actions/upload-artifact/issues/38

0 commit comments

Comments
 (0)