From: Tobias Brunner Date: Thu, 5 Sep 2024 08:46:39 +0000 (+0200) Subject: github: Use more verbose output for apt-get calls X-Git-Tag: 6.0.0rc1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55a660d9f7a9b6723c202ddddd8a77d5d3ded524;p=thirdparty%2Fstrongswan.git github: Use more verbose output for apt-get calls With -qq we don't see any detailed error messages. --- diff --git a/scripts/test.sh b/scripts/test.sh index 2ba4503e19..0d93c3cd9e 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -467,8 +467,8 @@ case "$1" in deps) case "$OS_NAME" in linux) - sudo apt-get update -qq && \ - sudo apt-get install -qq bison flex gperf gettext $DEPS + sudo apt-get update -y && \ + sudo apt-get install -y bison flex gperf gettext $DEPS ;; alpine) apk add --no-cache build-base automake autoconf libtool pkgconfig && \