From c32c8e895a122850975b62db5cbb4ccae3a333cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Tue, 10 May 2016 22:57:07 +0200 Subject: [PATCH] [fix] Do not be quiet in occ commands --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 7c09e0f..a4ff0bb 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -76,5 +76,5 @@ exec_occ() { shift 2 (cd "$WORKDIR" && exec_as "$AS_USER" \ - php occ --no-interaction --quiet --no-ansi "$@") + php occ --no-interaction --no-ansi "$@") }