Pārlūkot izejas kodu

Don't configure ssh if it isn't installed

Bob Mottram 9 gadus atpakaļ
vecāks
revīzija
7eed6ef862
Revīzijas autora e-pasts nav piesaistīts nevienam kontam
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      src/freedombone-image-customise

+ 1
- 1
src/freedombone-image-customise Parādīt failu

@@ -246,7 +246,7 @@ following commands, then enter your details.
246 246
 }
247 247
 
248 248
 configure_ssh() {
249
-    if [[ $VARIANT == "mesh" || $VARIANT == "meshclient" || $VARIANT != "meshusb" ]]; then
249
+    if [[ $VARIANT == "mesh" || $VARIANT == "meshclient" || $VARIANT == "meshusb" ]]; then
250 250
         return
251 251
     fi
252 252