1
0
mirror of https://github.com/c9fe/22120.git synced 2024-11-15 07:22:28 +01:00
22120/dl-node.sh
Cris Stringfellow 24ab9c8613 New
2021-11-03 04:51:04 +00:00

16 lines
500 B
Bash
Executable File

#!/bin/bash
unset npm_config_prefix
source $HOME/.nvm/nvm.sh
. $HOME/.profile
nvm install v14.15.3
nvm use v14.15.3
npx nexe -t linux-x64 -o bin/hello.nix -i ./hello.js -r \"./build/*\"
npx nexe -t windows -o bin/hello.exe -i ./hello.js -r \"./build/*\"
npx nexe -t macos-x64 -o bin/hello.mac -i ./hello.js -r \"./build/*\"
npx nexe -t windows-x32 -o bin/hello.win32.exe -i ./hello.js -r \"./build/*\" && npx nexe -t linux-x32 -o bin/hello.nix32 -i ./hello.js -r \"./build/*\"
rm -rf bin/hello.*