From: Jeremy Benoist Date: Sun, 5 Feb 2017 11:34:20 +0000 (+0100) Subject: Merge pull request #2839 from foxmask/master X-Git-Tag: 2.2.2~29 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=15a4d52833ac7433c9613f4e2b897a29aa09cce5;hp=5397d820fe94f1687bb2542e6ffd4b81461c6265;p=github%2Fwallabag%2Fwallabag.git Merge pull request #2839 from foxmask/master scripts/update.sh: 18: scripts/update.sh: composer.phar: not found --- diff --git a/scripts/require.sh b/scripts/require.sh index ddfb3dd2..c48ab936 100644 --- a/scripts/require.sh +++ b/scripts/require.sh @@ -5,5 +5,5 @@ 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; } else - COMPOSER_COMMAND='composer.phar' + COMPOSER_COMMAND='./composer.phar' fi