mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:05:42 +01:00
change '-o' in a test
command to || test
this syntax functions locally
This commit is contained in:
parent
ca503e3519
commit
f8d380b4f3
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ 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
|
||||
|
|
Loading…
Reference in a new issue