OH1KK / KiwiSDR-antenna-switch-extension

KiwiSDR antenna switch extension
MIT License
28 stars 13 forks source link

Syntax error in reset-to-default-antennas-when-no-users-online #35

Closed RipperFox closed 5 years ago

RipperFox commented 5 years ago

Line 67 fails if the variable never has been set (empty string ""):

if [ $FORBIDSWITCH -eq 1 ]; then

fix could be comparing strings:

if [ "$FORBIDSWITCH" = "1" ]; then

OH1KK commented 5 years ago

Thank you. Script updated.