Przeglądaj źródła

Don't configure ssh if it isn't installed

Bob Mottram 9 lat temu
rodzic
commit
7eed6ef862
Brak konta powiązanego z e-mailem autora
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      src/freedombone-image-customise

+ 1
- 1
src/freedombone-image-customise Wyświetl plik

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