From: Chocobozzz Date: Fri, 21 Oct 2016 12:46:17 +0000 (+0200) Subject: Fix upgrade script X-Git-Tag: v0.0.1-alpha~664 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=d16a0ad85174558388df721a9285aae71d83bc30;p=github%2FChocobozzz%2FPeerTube.git Fix upgrade script --- diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 1299ac55a..022e76107 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh @@ -3,7 +3,7 @@ git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1 -if [[ `pgrep peertube` > /dev/null ]]; then +if pgrep peertube > /dev/null; then echo 'PeerTube is running!' exit 0 fi