Skip to content

Commit

Permalink
version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-portmen committed Oct 5, 2017
1 parent 79c8045 commit a24e899
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion host.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var files = [];
var sprocess = [];

var config = {
version: '0.6.0'
version: '0.6.1'
};
// closing node when parent process is killed
process.stdin.resume();
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ echo NodeJS status = $isNode

if [ $isNode -eq 0 ]; then
node -e "process.exit(Number(process.version.substr(1).split('.')[0]) > 5 ? 0 : 1)"
isValidNode=$?
isNode=$?
fi
if [ $isValidNode -eq 0 ]; then
if [ $isNode -eq 0 ]; then
echo "Installer is using your system NodeJS."
node install.js `which node` $1
else
Expand Down

0 comments on commit a24e899

Please sign in to comment.