瀏覽代碼

Don't configure ssh if it isn't installed

Bob Mottram 9 年之前
父節點
當前提交
7eed6ef862
沒有帳戶連結到提交者的電子郵件
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/freedombone-image-customise

+ 1
- 1
src/freedombone-image-customise 查看文件

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