Ver código fonte

Don't configure ssh if it isn't installed

Bob Mottram 9 anos atrás
pai
commit
7eed6ef862
Nenhuma conta conectada ao e-mail do autor de commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      src/freedombone-image-customise

+ 1
- 1
src/freedombone-image-customise Ver arquivo

@@ -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