We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d93bc commit e29f44eCopy full SHA for e29f44e
aws-cli/Dockerfile
@@ -37,7 +37,7 @@ RUN dnf upgrade -y \
37
xz-5.2.5-9.amzn2023.0.2 \
38
zip-3.0-28.amzn2023.0.2 \
39
&& IFS=$'\n\t' \
40
- && if dnf upgrade -y | tee >(cat 1>&2) | grep -q -e '^Nothing to do.' ; then \
+ && if dnf upgrade -y | tee -a /dev/stderr | grep -q -e '^Nothing to do.' ; then \
41
exit 1 ; \
42
fi \
43
&& dnf clean all \
@@ -47,7 +47,7 @@ RUN dnf upgrade -y \
47
# FIXME @TL --break-system-packages not supported until Python 3.11.
48
RUN pip3 install --no-cache-dir --upgrade \
49
pipx==1.7.1 \
50
- && pip3 list --outdated | tee >(cat 1>&2) | grep -q -e '^pipx ' ; then \
+ && pip3 list --outdated | tee -a /dev/stderr | grep -q -e '^pipx ' ; then \
51
52
fi
53
0 commit comments