diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-27 09:53:09 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-27 09:53:09 +0200 |
commit | 9998c725330b4a99d6d12df60ac8234052e80b6a (patch) | |
tree | 7e1c3691482fd262d02884f0c6ceadeb260757bc /scripts/require.sh | |
parent | f3b637fbfee2fa9f66e53cbadd05e85771eece9d (diff) | |
download | wallabag-9998c725330b4a99d6d12df60ac8234052e80b6a.tar.gz wallabag-9998c725330b4a99d6d12df60ac8234052e80b6a.tar.zst wallabag-9998c725330b4a99d6d12df60ac8234052e80b6a.zip |
Added require.sh to check if composer is installed
Diffstat (limited to 'scripts/require.sh')
-rw-r--r-- | scripts/require.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/require.sh b/scripts/require.sh new file mode 100644 index 00000000..851d065d --- /dev/null +++ b/scripts/require.sh | |||
@@ -0,0 +1,8 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # File used to check dependencies | ||
3 | |||
4 | if [ ! -f composer.phar ]; then | ||
5 | echo "composer.phar not found, we'll see if composer is installed globally." | ||
6 | fi | ||
7 | |||
8 | 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; } | ||