Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Use double curly brackets to fix InvocationError
Browse files Browse the repository at this point in the history
  • Loading branch information
locriandev committed Jun 22, 2022
1 parent 234da43 commit 3f4017d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doozerlib/coverity.py
Expand Up @@ -282,8 +282,8 @@ def _covscan_prepare_parent(cc: CoverityContext, parent_image_name, parent_tag)
# Set https proxy
ARG HTTPS_PROXY
RUN if [[ ! -z ${HTTPS_PROXY} ]]; then echo "Using proxy: $HTTPS_PROXY"; fi
ENV https_proxy ${HTTPS_PROXY}
RUN if [[ ! -z ${{HTTPS_PROXY}} ]]; then echo "Using proxy: $HTTPS_PROXY"; fi
ENV https_proxy ${{HTTPS_PROXY}}
# Add typical build repos to the image, but don't add to /etc/yum.repos.d
# until we know whether we are on el7 or el8. As of 4.8, repos are only
Expand Down

0 comments on commit 3f4017d

Please sign in to comment.