Skip to content

Commit 1cc95db

Browse files
authored
Clean up
deleted unnecessary echo's
1 parent ebe29db commit 1cc95db

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.templates/deconz/build.sh

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#deCONZ device configuration
44

5-
device_selection=$(whiptail --radiolist --title "deCONZ device configuration" --notags \
6-
"Use the [SPACEBAR] to select your Zigbee device from the list below and make sure it is plugged in (if not, press [ESC])." 20 78 12 \
5+
device_selection=$(whiptail --radiolist --title "Select deCONZ gateway" --notags \
6+
"Use the [SPACEBAR] to select your deCONZ gateway from the list below AND MAKE SURE IT IS PLUGGED IN (if not, press [ESC])." 20 78 12 \
77
"ConBeeII" "ConBee II " "ON" \
88
"ConBee" "ConBee " "OFF" \
99
"RaspBee" "RaspBee " "OFF" \
@@ -12,18 +12,15 @@ device_selection=$(whiptail --radiolist --title "deCONZ device configuration" --
1212
case $device_selection in
1313

1414
"ConBeeII")
15-
echo "...copied ConBee II config from template"
16-
echo "" >>docker-compose.yml
1715
cat .templates/deconz/service_conbee_II.yml >>docker-compose.yml
16+
echo "...copied ConBee II config from template"
1817
;;
1918
"ConBee")
20-
echo "...copied ConBee config from template"
21-
echo "" >>docker-compose.yml
2219
cat .templates/deconz/service_conbee.yml >>docker-compose.yml
20+
echo "...copied ConBee config from template"
2321
;;
2422
"RaspBee")
25-
echo "...copied RaspBee config from template"
26-
echo "" >>docker-compose.yml
2723
cat .templates/deconz/service_raspbee.yml >>docker-compose.yml
24+
echo "...copied RaspBee config from template"
2825
;;
2926
esac

0 commit comments

Comments
 (0)