From 11be6143103d6796e7f3384e2d41940d753aaf8d Mon Sep 17 00:00:00 2001 From: "Joseph C. Lehner" Date: Mon, 30 Sep 2024 16:50:59 +0200 Subject: [PATCH] Silence wget --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e1e0cbd..d63af4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ADD "https://api.github.com/repos/jclehner/nmrpflash/commits?per_page=1" latest_ RUN git clone https://github.com/jclehner/nmrpflash WORKDIR /usr/src/nmrpflash -RUN wget -O npcap-sdk.zip https://npcap.com/dist/npcap-sdk-${NPCAP_VERSION}.zip +RUN wget -q -O npcap-sdk.zip https://npcap.com/dist/npcap-sdk-${NPCAP_VERSION}.zip RUN unzip npcap-sdk.zip -d Npcap ARG CACHEBUST=1 diff --git a/Makefile b/Makefile index c5c60db..97a915e 100644 --- a/Makefile +++ b/Makefile @@ -82,7 +82,7 @@ uninstall: rm -f $(PREFIX)/bin/nmrpflash $(LINUXDEPLOY): - wget -O $@ https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/$(shell basename $@) + wget -q -O $@ https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/$(shell basename $@) chmod +x $@ nmrpflash-$(ARCH).AppImage: $(LINUXDEPLOY) release