From c5ad143e750254adb185ab6956dc87d2585ae54d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 24 Oct 2016 22:28:44 +0200 Subject: Added a check in Makefile to see if composer is installed Fix #2498 --- scripts/install.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts') diff --git a/scripts/install.sh b/scripts/install.sh index 54d0bb78..d7b05a1e 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,6 +2,8 @@ # You can execute this file to install wallabag # eg: `sh install.sh prod` +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; } + ENV=$1 TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) -- cgit v1.2.3