mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
Fixed style warning from shellcheck re x in comparisons.
This commit is contained in:
@ -38,8 +38,8 @@ TEST_DIR="${TEST_DIR:-XXX-fips-test}"
|
|||||||
FLAVOR="${FLAVOR:-linux}"
|
FLAVOR="${FLAVOR:-linux}"
|
||||||
KEEP="${KEEP:-no}"
|
KEEP="${KEEP:-no}"
|
||||||
|
|
||||||
while [ "x$1" != 'x' ]; do
|
while [ "$1" ]; do
|
||||||
if [ "x$1" = 'xkeep' ]; then KEEP='yes'; else FLAVOR="$1"; fi
|
if [ "$1" = 'keep' ]; then KEEP='yes'; else FLAVOR="$1"; fi
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user