mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2024-12-17 20:55:27 +00:00
copy-firmware: Fix test: unexpected operator
dash is the default /bin/sh on Debian based system. ``` dash ./copy-firmware.sh --zstd example ./copy-firmware.sh: 37: test: unexpected operator ``` `=` should be used with the test command for POSIX conformance. Signed-off-by: Benjamin Drung <benjamin.drung@canonical.com> Signed-off-by: Josh Boyer <jwboyer@kernel.org>
This commit is contained in:
parent
b602d438fb
commit
0a51959c6f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user