]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/upgrade-peertube.sh
Reword docs (#176)
[github/Chocobozzz/PeerTube.git] / scripts / upgrade-peertube.sh
index f7b8564707d2eaa1038d0aba99a22293374c1ae4..bfef38264898eca803613798db5cd746af9f4839 100755 (executable)
@@ -4,14 +4,14 @@ verlte() {
   [ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ]
 }
 
-nodeMinVersion="6.0.0"
+nodeMinVersion="8.0.0"
 npmMinVersion="3.0.0"
 
 actualNodeVersion=$(node --version | tr -d "v")
 actualNpmVersion=$(npm --version)
 
 if verlte $actualNodeVersion $nodeMinVersion; then
-  echo 'You need node >= 6'
+  echo 'You need node >= 8'
   exit 0
 fi
 
@@ -26,7 +26,7 @@ if ! which yarn > /dev/null; then
 fi
 
 if pgrep peertube > /dev/null; then
-  echo 'PeerTube is running!'
+  echo 'PeerTube is running, please shut it off before upgrading'
   exit 0
 fi
 
@@ -35,4 +35,4 @@ git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
 yarn install --pure-lockfile
 npm run build
 
-echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
+echo -e "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."