diff options
author | Marius B. Kotsbak <marius@kotsbak.com> | 2014-12-29 22:27:36 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-12-30 10:48:08 +0100 |
commit | 8afb82b9a597e296e03e4f15cb6d635f63e919ae (patch) | |
tree | 3b13b72a7fa49f0ed2b0c5983d544778a5c79976 | |
parent | b464e60f4b5a92f46227b980e01b422fd4984e43 (diff) |
Fix bashism, as the script uses "sh", not "bash".
See downstream bug report https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772328
-rwxr-xr-x | utils/qmi-network.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/qmi-network.in b/utils/qmi-network.in index 84a46ae..0aeb76e 100755 --- a/utils/qmi-network.in +++ b/utils/qmi-network.in @@ -47,10 +47,10 @@ version () } if [ $# -ne 2 ]; then - if [ "$1" == "--help" ]; then + if [ "$1" = "--help" ]; then help exit 0 - elif [ "$1" == "--version" ]; then + elif [ "$1" = "--version" ]; then version exit 0 fi |