Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-portmen committed May 29, 2021
1 parent 28d3895 commit b456f7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion host.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let files = [];
const sprocess = [];

const config = {
version: '0.9.2'
version: '0.9.3'
};
// closing node when parent process is killed
process.stdin.resume();
Expand Down
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ else
MACHINE_TYPE=`uname -m`
echo "Installer is using the embedded NodeJS"
echo
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
if [[ $OSTYPE == 'darwin'* ]]; then
../node/x64/node install.js --add_node $1
elif [ ${MACHINE_TYPE} == 'x86_64' ]; then
../node/x64/node install.js --add_node $1
else
../node/x86/node install.js --add_node $1
Expand Down

0 comments on commit b456f7b

Please sign in to comment.