small fix for bash install meteor

Tested on a Linux install but gave an error now it's all fixed and tested
This commit is contained in:
MeteorPlus 2017-03-28 16:33:06 +01:00 committed by GitHub
parent a5d8202f27
commit 1b57a37fd8

View file

@ -18,11 +18,11 @@ echo "Telescope requires Meteor but it's not installed. Trying to Install..." >&
if [ "$(uname)" == "Darwin" ]; then
# Mac OS platform
echo "🔭 ${bold}${purple}Good news you have a Mac and we will install it now! ${reset}";
curl https://install.meteor.com/ | sh;
curl https://install.meteor.com/ | bash;
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
# GNU/Linux platform
echo "🔭 ${bold}${purple}Good news you are on GNU/Linux platform and we will install Meteor now! ${reset}";
curl https://install.meteor.com/ | sh;
curl https://install.meteor.com/ | bash;
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
# Windows NT platform
echo "🔭 ${bold}${purple}Oh no! you are on a Windows platform and you will need to install Meteor Manually! ${reset}";