diff --git a/copy-firmware.sh b/copy-firmware.sh index 58eb7e39..a6be8c74 100755 --- a/copy-firmware.sh +++ b/copy-firmware.sh @@ -24,7 +24,7 @@ while test $# -gt 0; do ;; --xz) - if test "$compext" == ".zst"; then + if test "$compext" = ".zst"; then echo "ERROR: cannot mix XZ and ZSTD compression" exit 1 fi @@ -34,7 +34,7 @@ while test $# -gt 0; do ;; --zstd) - if test "$compext" == ".xz"; then + if test "$compext" = ".xz"; then echo "ERROR: cannot mix XZ and ZSTD compression" exit 1 fi