]> 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 5186a269fa7d66c42708452bedd31ba4632c14a2..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