fix missing stderr redirect breaking docker hub autobuild
This commit is contained in:
parent
dd1e01ee24
commit
eaedd828b7
1 changed files with 4 additions and 4 deletions
|
@ -171,10 +171,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$T
|
||||||
# Save version info
|
# Save version info
|
||||||
&& ( \
|
&& ( \
|
||||||
which curl && curl --version | head -n1 \
|
which curl && curl --version | head -n1 \
|
||||||
&& which wget && wget --version | head -n1 \
|
&& which wget && wget --version 2>&1 | head -n1 \
|
||||||
&& which yt-dlp && yt-dlp --version | head -n1 \
|
&& which yt-dlp && yt-dlp --version 2>&1 | head -n1 \
|
||||||
&& which git && git --version | head -n1 \
|
&& which git && git --version 2>&1 | head -n1 \
|
||||||
&& which rg && rg --version | head -n1 \
|
&& which rg && rg --version 2>&1 | head -n1 \
|
||||||
&& echo -e '\n\n' \
|
&& echo -e '\n\n' \
|
||||||
) | tee -a /VERSION.txt
|
) | tee -a /VERSION.txt
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue