Sfoglia il codice sorgente

Don't configure ssh if it isn't installed

Bob Mottram 9 anni fa
parent
commit
7eed6ef862
No account linked to committer's email
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/freedombone-image-customise

+ 1
- 1
src/freedombone-image-customise Vedi File

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