1
0
Fork 0

add quotes for variables

This commit is contained in:
mmaster 2020-08-23 04:10:55 +02:00
parent 929f3dec26
commit 9e4ec6c457
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ if [ "buzzer" != "$1" -a "cron" != "$1" ]; then
exit 1
fi
if $(command -v pgrep) "$player > /dev/null; then
if $(command -v pgrep) "$player" > /dev/null; then
if [ "$1" = "buzzer" ]; then
$(command -v pkill) $player
$(command -v pkill) "$player"
elif [ "$1" = "cron" ]; then
exit 1