]> git.alsa-project.org Git - alsa-utils.git/commitdiff
alsa-info.sh: Update `test` '-a' and '-o' to '&&' and '||'
authorwileyhy <84648683+wileyhy@users.noreply.github.com>
Sat, 29 Apr 2023 02:49:48 +0000 (19:49 -0700)
committerJaroslav Kysela <perex@perex.cz>
Wed, 3 May 2023 14:29:52 +0000 (16:29 +0200)
lines 50, 103: in two compound ['s, replace '-a' with '] && ['
  SC2166 – Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well defined.
  SC2107 – Instead of `[ a && b ]`, use `[ a ] && [ b ]`.

line 45: in a compound test command, change '-o' to '|| test'
  SC1139 – Use `||` instead of `-o` between test commands.
  SC2109 – Instead of `[ a || b ]`, use `[ a ] || [ b ]`.

 ... https://github.com/koalaman/shellcheck

Fixes: https://github.com/alsa-project/alsa-utils/pull/206
From: wileyhy @ github
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
alsa-info/alsa-info.sh

index 04d6d1762119d0b55e84b7a1211a9a255c1f3c22..4934d70196dfba95554380879ec41cb092e21228 100755 (executable)
@@ -42,12 +42,12 @@ REQUIRES="mktemp grep pgrep awk date uname cat sort dmesg amixer alsactl"
 #
 
 update() {
-       test -z "$WGET" -o ! -x "$WGET" && return
+       test -z "$WGET" || test ! -x "$WGET" && return
 
        SHFILE=$(mktemp -t alsa-info.XXXXXXXXXX) || exit 1
        wget -O $SHFILE "https://www.alsa-project.org/alsa-info.sh" >/dev/null 2>&1
        REMOTE_VERSION=$(grep SCRIPT_VERSION $SHFILE | head -n1 | sed 's/.*=//')
-       if [ -s "$SHFILE" -a "$REMOTE_VERSION" != "$SCRIPT_VERSION" ]; then
+       if [ -s "$SHFILE" ] && [ "$REMOTE_VERSION" != "$SCRIPT_VERSION" ]; then
                if [[ -n $DIALOG ]]
                then
                        OVERWRITE=
@@ -100,7 +100,7 @@ update() {
 }
 
 cleanup() {
-       if [ -n "$TEMPDIR" -a "$KEEP_FILES" != "yes" ]; then
+       if [ -n "$TEMPDIR" ] && [ "$KEEP_FILES" != "yes" ]; then
                rm -rf "$TEMPDIR" 2>/dev/null
        fi
        test -n "$KEEP_OUTPUT" || rm -f "$NFILE"