Skip to content

Commit

Permalink
Guard use of zip and unzip
Browse files Browse the repository at this point in the history
Uncovered on the newly minted GCC119, which is an AIX box.
  • Loading branch information
noloader committed Oct 2, 2023
1 parent 49fef81 commit 3405dce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TestScripts/cryptest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7944,7 +7944,7 @@ fi

############################################
# Test latest zip with unzip -a
if true; then
if command -v zip &>/dev/null && command -v unzip &>/dev/null; then

if command -v wget &>/dev/null; then
FETCH_CMD="wget -q -O"
Expand All @@ -7954,7 +7954,7 @@ if true; then
FETCH_CMD="wget-and-curl-not-found"
fi

major=8; minor=6; rev=0
major=8; minor=9; rev=0
filebase="cryptopp${major}${minor}${rev}"
filename="${filebase}.zip"
url="https://cryptopp.com/${filename}"
Expand Down

0 comments on commit 3405dce

Please sign in to comment.