Skip to content

Commit

Permalink
Explicitly install awk into opensuse
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Neff <andy@visionsystemsinc.com>
  • Loading branch information
andyneff committed Aug 31, 2023
1 parent 5eb617d commit f20ddba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/tests/os.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN set -euxv; \
unzip curl; \
elif command -v zypper; then \
other='git curl'; \
if [ -f "/etc/os-release" ] && [[ $(source /etc/os-release; echo "${ID} ${VERSION}") = sles\ 11.* ]]; then \
if [ -f "/etc/os-release" ] && [[ $(source /etc/os-release; echo "${ID} ${VERSION-}") = sles\ 11.* ]]; then \
zypper --gpg-auto-import-keys --non-interactive install -y \
http://opensource.wandisco.com/suse/11/git/x86_64/wandisco-git-suse-release-11-1.noarch.rpm; \
rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco; \
Expand All @@ -71,6 +71,8 @@ RUN set -euxv; \
findutils \
# xxd for unit tests
vim \
# Huh, an OS removed awk
awk \
${other} ca-certificates\
gzip tar unzip; \
elif command -v apk; then \
Expand Down

0 comments on commit f20ddba

Please sign in to comment.