diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2017-02-05 12:34:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-05 12:34:20 +0100 |
commit | 15a4d52833ac7433c9613f4e2b897a29aa09cce5 (patch) | |
tree | 7b4cbdf99519fda836b9c6c348e18897e1e72a2a /scripts | |
parent | 5397d820fe94f1687bb2542e6ffd4b81461c6265 (diff) | |
parent | 205c6f0c667c5faa3222f2c02f82e3707d96ac02 (diff) | |
download | wallabag-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
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/require.sh | 2 |
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; } |
7 | else | 7 | else |
8 | COMPOSER_COMMAND='composer.phar' | 8 | COMPOSER_COMMAND='./composer.phar' |
9 | fi | 9 | fi |