diff --git a/INSTALL/CentOS - Quick Install.sh b/INSTALL/CentOS - Quick Install.sh index ee078038..3220cd48 100644 --- a/INSTALL/CentOS - Quick Install.sh +++ b/INSTALL/CentOS - Quick Install.sh @@ -50,7 +50,7 @@ fi if ! [ -x "$(command -v node)" ]; then echo "=========================================================" echo "Node.js not found, installing..." - sudo curl --silent --location https://rpm.nodesource.com/setup_11.x | bash - + sudo curl --silent --location https://rpm.nodesource.com/setup_12.x | bash - sudo yum install nodejs -y else echo "Node.js is already installed..." diff --git a/INSTALL/centos.sh b/INSTALL/centos.sh index 7277ae33..7a28b6c1 100644 --- a/INSTALL/centos.sh +++ b/INSTALL/centos.sh @@ -33,7 +33,7 @@ if ! [ -x "$(command -v node)" ]; then echo "=============" echo "Shinobi - Installing Node.js" #Installs Node.js 10 - sudo curl --silent --location https://rpm.nodesource.com/setup_11.x | bash - + sudo curl --silent --location https://rpm.nodesource.com/setup_12.x | bash - sudo yum install nodejs -y else echo "Node.js Found..." diff --git a/INSTALL/ubuntu-easyinstall.sh b/INSTALL/ubuntu-easyinstall.sh index 8c12abe6..fe740287 100644 --- a/INSTALL/ubuntu-easyinstall.sh +++ b/INSTALL/ubuntu-easyinstall.sh @@ -3,11 +3,11 @@ echo "Shinobi - Do you want to Install Node.js?" echo "(y)es or (N)o" read -r nodejsinstall if [ "$nodejsinstall" = "y" ]; then - wget https://deb.nodesource.com/setup_11.x - chmod +x setup_11.x - ./setup_11.x + wget https://deb.nodesource.com/setup_12.x + chmod +x setup_12.x + ./setup_12.x sudo apt install nodejs -y - rm setup_11.x + rm setup_12.x fi #Detect Ubuntu Version diff --git a/INSTALL/ubuntu-touchless.sh b/INSTALL/ubuntu-touchless.sh index bcab4ed5..7f70146f 100644 --- a/INSTALL/ubuntu-touchless.sh +++ b/INSTALL/ubuntu-touchless.sh @@ -43,11 +43,11 @@ fi if ! [ -x "$(command -v node)" ]; then echo "=============" echo "Shinobi - Installing Node.js" - wget https://deb.nodesource.com/setup_11.x - chmod +x setup_11.x - ./setup_11.x + wget https://deb.nodesource.com/setup_12.x + chmod +x setup_12.x + ./setup_12.x sudo apt install nodejs -y - rm setup_11.x + rm setup_12.x else echo "Node.js Found..." echo "Version : $(node -v)" diff --git a/INSTALL/ubuntu.sh b/INSTALL/ubuntu.sh index 7b78fccd..db444ca3 100644 --- a/INSTALL/ubuntu.sh +++ b/INSTALL/ubuntu.sh @@ -43,11 +43,11 @@ fi if ! [ -x "$(command -v node)" ]; then echo "=============" echo "Shinobi - Installing Node.js" - wget https://deb.nodesource.com/setup_11.x - chmod +x setup_11.x - ./setup_11.x + wget https://deb.nodesource.com/setup_12.x + chmod +x setup_12.x + ./setup_12.x sudo apt install nodejs -y - rm setup_11.x + rm setup_12.x else echo "Node.js Found..." echo "Version : $(node -v)"