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 c44c419 commit efcf6aeCopy full SHA for efcf6ae
scripts/BigRedButton
@@ -1,4 +1,6 @@
1
-#!/usr/bin/env sh
+#!/usr/bin/env bash
2
+
3
+. scripts/adjustEnvVars.sh
4
5
#
6
# Build cross toolchain for all supported platforms
@@ -11,8 +13,8 @@ PLATFORM=pc_qemu_64 npm run build || exit 2
11
13
# Pack toolchain in a node-gyp compatible way
12
14
15
-mkdir -p prebuilds &&
-tar -cf - out | gzip > prebuilds/linux-x64.tar.gz || exit 3
16
+mkdir -p prebuilds &&
17
+tar -cf - out | gzip > prebuilds/linux-$NODE_ARCH.tar.gz || exit 3
18
19
20
# Upload release to GitHub
0 commit comments