Update install

This commit is contained in:
Luke Slater 2014-09-11 20:21:16 +01:00
parent 1a590bd678
commit a2a025ad55

View File

@ -3,12 +3,12 @@ cat LICENCE
git submodule init
git submodule update
if [ ! -e /usr/bin/node ] && [ ! -e /usr/local/bin/node ];
if [ ! -e /usr/bin/node ] && [ ! -e /usr/local/bin/node ] && [ ! -e /usr/local/bin/node ] && [ ! -e /usr/sbin/node ];
then
echo 'node.js is not installed. Please install it before running install.sh.'
exit 1
fi
if [ ! -e /usr/bin/npm ] && [ ! -e /usr/local/bin/npm ];
if [ ! -e /usr/bin/npm ] && [ ! -e /usr/local/bin/npm ] && [ ! -e /usr/sbin/npm ];
then
echo 'npm is not installed. Please install it before running install.sh'
exit 1
@ -38,7 +38,7 @@ then
vim config.json
fi
read -p "Setup complete. Run depressionbot now? [y/N]"
read -p "Setup complete. Run dbot now? [y/N]"
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
echo 'Okay. To run the bot, use "node run.js"'