diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/fedora/rpm/build.sh | 2 | ||||
-rwxr-xr-x | contrib/fedora/rpm/build_clean.sh | 2 | ||||
-rwxr-xr-x | contrib/scripts/nm-ci-run.sh | 2 | ||||
-rwxr-xr-x | contrib/scripts/nm-setup-git.sh | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/contrib/fedora/rpm/build.sh b/contrib/fedora/rpm/build.sh index 590929660a..358cfb1615 100755 --- a/contrib/fedora/rpm/build.sh +++ b/contrib/fedora/rpm/build.sh @@ -56,7 +56,7 @@ in_set() { local v="$1" shift for v2; do - test "$v" == "$v2" && return 0 + test "$v" = "$v2" && return 0 done return 1 } diff --git a/contrib/fedora/rpm/build_clean.sh b/contrib/fedora/rpm/build_clean.sh index 6ba202674e..3f07a9b198 100755 --- a/contrib/fedora/rpm/build_clean.sh +++ b/contrib/fedora/rpm/build_clean.sh @@ -34,7 +34,7 @@ in_set() { local v="$1" shift for v2; do - test "$v" == "$v2" && return 0 + test "$v" = "$v2" && return 0 done return 1 } diff --git a/contrib/scripts/nm-ci-run.sh b/contrib/scripts/nm-ci-run.sh index 676780b2c8..f9d7cf00a8 100755 --- a/contrib/scripts/nm-ci-run.sh +++ b/contrib/scripts/nm-ci-run.sh @@ -102,7 +102,7 @@ unset _WITH_VALGRIND_CHECKED _with_valgrind() { _is_true "$WITH_VALGRIND" 0 || return 1 - test "$_WITH_VALGRIND_CHECKED" == "1" && return 0 + test "$_WITH_VALGRIND_CHECKED" = "1" && return 0 _WITH_VALGRIND_CHECKED=1 if [ "$IS_ALPINE" = 1 ]; then diff --git a/contrib/scripts/nm-setup-git.sh b/contrib/scripts/nm-setup-git.sh index 0e3610c5af..e2b4bdc6d8 100755 --- a/contrib/scripts/nm-setup-git.sh +++ b/contrib/scripts/nm-setup-git.sh @@ -62,7 +62,7 @@ git_config_reset() { local val="$2" local c=(git config --replace-all "$key" "$val") - test "$#" == 2 || die "invalid arguments to git_config_add(): $@" + test "$#" -eq 2 || die "invalid arguments to git_config_add(): $@" if [ "$(git config --get-all "$key")" = "$val" ]; then SKIP=1 call "${c[@]}" @@ -76,7 +76,7 @@ git_config_add() { local val="$2" local c=(git config --add "$key" "$val") - test "$#" == 2 || die "invalid arguments to git_config_add(): $@" + test "$#" -eq 2 || die "invalid arguments to git_config_add(): $@" if git config --get-all "$key" | grep -qFx "$val"; then SKIP=1 call "${c[@]}" |