mirror of https://github.com/hak5/shark-files.git
finish shellcheck fixes for fun
parent
534d8cc12c
commit
cc8fb902f8
|
@ -16,10 +16,10 @@ function check_gpio() {
|
||||||
gpio0=$(check_gpio 0)
|
gpio0=$(check_gpio 0)
|
||||||
gpio2=$(check_gpio 2)
|
gpio2=$(check_gpio 2)
|
||||||
|
|
||||||
if [ ${gpio0} -eq "0" ] && [ ${gpio2} -eq "0" ]; then
|
if [ "${gpio0}" -eq "0" ] && [ "${gpio2}" -eq "0" ]; then
|
||||||
echo "switch1"
|
echo "switch1"
|
||||||
elif [ ${gpio0} -eq "0" ]; then
|
elif [ "${gpio0}" -eq "0" ]; then
|
||||||
echo "switch3"
|
echo "switch3"
|
||||||
elif [ ${gpio2} -eq "0" ]; then
|
elif [ "${gpio2}" -eq "0" ]; then
|
||||||
echo "switch2"
|
echo "switch2"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue