From: Jérémy Benoist Date: Mon, 17 Jun 2019 06:19:16 +0000 (+0200) Subject: Merge pull request #4009 from wallabag/fix/check-git-directory X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=f981d1d732350f31baa731ef9edee7bfa08def82;hp=1bbdd35731a25bf75ad48f0a531df3f346967f5b;p=github%2Fwallabag%2Fwallabag.git Merge pull request #4009 from wallabag/fix/check-git-directory Check if .git directory exist before making the update --- diff --git a/scripts/require.sh b/scripts/require.sh index c48ab936..63c38132 100755 --- a/scripts/require.sh +++ b/scripts/require.sh @@ -1,6 +1,6 @@ #! /usr/bin/env bash -# File used to check dependencies +# Check for composer if [ ! -f composer.phar ]; then echo "composer.phar not found, we'll see if composer is installed globally." command -v composer >/dev/null 2>&1 || { echo >&2 "wallabag requires composer but it's not installed (see http://doc.wallabag.org/en/master/user/installation.html). Aborting."; exit 1; } diff --git a/scripts/update.sh b/scripts/update.sh index 3ef10439..1f31d429 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -37,6 +37,12 @@ fi . "$REQUIRE_FILE" +# Check for wallabag .git folder +if [ ! -d .git ]; then + echo "Can not update because wallabag wasn't installed using git (see https://doc.wallabag.org/en/admin/upgrade.html#upgrade-on-a-shared-hosting). Aborting."; + exit 2; +fi + rm -rf var/cache/* git fetch origin git fetch --tags