Skip to content
This repository was archived by the owner on Nov 9, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ fi
echo node installed!

# Storing how NodeJS is meant to be called
set NODEJS_COMMAND = 'node'
if ! which ${NODE_COMMAND} > /dev/null
NODEJS_COMMAND='node'
if ! which ${NODEJS_COMMAND} > /dev/null
then
set NODEJS_COMMAND = 'nodejs'
NODEJS_COMMAND='nodejs'
fi

if ! which npm > /dev/null
Expand Down