mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-15 09:57:41 +01:00
Merge pull request #4009 from wallabag/fix/check-git-directory
Check if .git directory exist before making the update
This commit is contained in:
commit
f981d1d732
@ -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; }
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user