aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2017-02-05 12:34:20 +0100
committerGitHub <noreply@github.com>2017-02-05 12:34:20 +0100
commit15a4d52833ac7433c9613f4e2b897a29aa09cce5 (patch)
tree7b4cbdf99519fda836b9c6c348e18897e1e72a2a
parent5397d820fe94f1687bb2542e6ffd4b81461c6265 (diff)
parent205c6f0c667c5faa3222f2c02f82e3707d96ac02 (diff)
downloadwallabag-15a4d52833ac7433c9613f4e2b897a29aa09cce5.tar.gz
wallabag-15a4d52833ac7433c9613f4e2b897a29aa09cce5.tar.zst
wallabag-15a4d52833ac7433c9613f4e2b897a29aa09cce5.zip
Merge pull request #2839 from foxmask/master
scripts/update.sh: 18: scripts/update.sh: composer.phar: not found
-rw-r--r--scripts/require.sh2
1 files changed, 1 insertions, 1 deletions
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
5 echo "composer.phar not found, we'll see if composer is installed globally." 5 echo "composer.phar not found, we'll see if composer is installed globally."
6 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; } 6 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; }
7else 7else
8 COMPOSER_COMMAND='composer.phar' 8 COMPOSER_COMMAND='./composer.phar'
9fi 9fi