mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 09:31:43 -05:00
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:
parent
a5d8202f27
commit
1b57a37fd8
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@ echo "Telescope requires Meteor but it's not installed. Trying to Install..." >&
|
||||||
if [ "$(uname)" == "Darwin" ]; then
|
if [ "$(uname)" == "Darwin" ]; then
|
||||||
# Mac OS platform
|
# Mac OS platform
|
||||||
echo "🔭 ${bold}${purple}Good news you have a Mac and we will install it now! ${reset}";
|
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
|
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
||||||
# GNU/Linux platform
|
# GNU/Linux platform
|
||||||
echo "🔭 ${bold}${purple}Good news you are on GNU/Linux platform and we will install Meteor now! ${reset}";
|
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
|
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
|
||||||
# Windows NT platform
|
# Windows NT platform
|
||||||
echo "🔭 ${bold}${purple}Oh no! you are on a Windows platform and you will need to install Meteor Manually! ${reset}";
|
echo "🔭 ${bold}${purple}Oh no! you are on a Windows platform and you will need to install Meteor Manually! ${reset}";
|
||||||
|
|
Loading…
Add table
Reference in a new issue