From 78fec327e4c8d4d0ba2c130b3a077c85980e41ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Fri, 9 Dec 2016 16:27:32 +0100 Subject: [PATCH] fix postinstall debug mode --- contrib/packager.io/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/packager.io/functions b/contrib/packager.io/functions index 8f0962377..8e8080286 100644 --- a/contrib/packager.io/functions +++ b/contrib/packager.io/functions @@ -6,7 +6,7 @@ function debug() { if [ "${DEBUG}" == "yes" ]; then echo "DEBUG MODE ON" - set -e + set -ex fi }