tDockerfile: don't suppress error message (#4509) - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5fde89b689a9326d3e7a4fafd4a853afd9c00b52 DIR parent 27fc715182bf816033056a97e2e2a6d27d463f76 HTML Author: Filip Gospodinov <f@gospodinov.ch> Date: Fri, 6 Jul 2018 18:26:18 +0200 Dockerfile: don't suppress error message (#4509) The `-qq` flag will suppress helpful output in case of an error. Diffstat: M contrib/build-wine/docker/Dockerfi… | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- DIR diff --git a/contrib/build-wine/docker/Dockerfile b/contrib/build-wine/docker/Dockerfile t@@ -3,8 +3,8 @@ FROM ubuntu:18.04@sha256:5f4bdc3467537cbbe563e80db2c3ec95d548a9145d64453b06939c4 ENV LC_ALL=C.UTF-8 LANG=C.UTF-8 RUN dpkg --add-architecture i386 && \ - apt-get update -qq && \ - apt-get install -qq \ + apt-get update -q && \ + apt-get install -qy \ wget=1.19.4-1ubuntu2.1 \ gnupg2=2.2.4-1ubuntu1.1 \ dirmngr=2.2.4-1ubuntu1.1 \ t@@ -13,8 +13,8 @@ RUN dpkg --add-architecture i386 && \ wget -nc https://dl.winehq.org/wine-builds/Release.key && \ apt-key add Release.key && \ apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ && \ - apt-get update -qq && \ - apt-get install -qq \ + apt-get update -q && \ + apt-get install -qy \ winehq-stable=3.0.1~bionic \ git=1:2.17.1-1ubuntu0.1 \ p7zip-full=16.02+dfsg-6 \