From eaedd828b71f93e0441864e145ddfb88ec585d63 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 13 Nov 2023 20:40:29 -0800 Subject: [PATCH] fix missing stderr redirect breaking docker hub autobuild --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 10e153e3..24ed751b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -171,10 +171,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$T # Save version info && ( \ which curl && curl --version | head -n1 \ - && which wget && wget --version | head -n1 \ - && which yt-dlp && yt-dlp --version | head -n1 \ - && which git && git --version | head -n1 \ - && which rg && rg --version | head -n1 \ + && which wget && wget --version 2>&1 | head -n1 \ + && which yt-dlp && yt-dlp --version 2>&1 | head -n1 \ + && which git && git --version 2>&1 | head -n1 \ + && which rg && rg --version 2>&1 | head -n1 \ && echo -e '\n\n' \ ) | tee -a /VERSION.txt