diff options
-rwxr-xr-x | .ci/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index 26f7309..1c6bc24 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -8,5 +8,5 @@ fi echo "apt-get update" ./.ci/retry.sh apt-get update || exit 1 -echo "apt-get -y -qq install $*" -./.ci/retry.sh apt-get -y -qq install $* || exit 1 +echo "apt-get -y install $*" +./.ci/retry.sh apt-get -y install $* || exit 1 |