From 25d637576d44a5c1ab01b7895e92898d9cf1e8ca Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 30 Apr 2015 19:19:10 +0200 Subject: [PATCH] cjdns: uci-defaults: fix shell syntax error uci-defaults script complained about sh: missing ] fix this by adding the missing whitespace which caused the error. Signed-off-by: Daniel Golle --- cjdns/files/cjdns.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjdns/files/cjdns.defaults b/cjdns/files/cjdns.defaults index f6ca772..0624daf 100644 --- a/cjdns/files/cjdns.defaults +++ b/cjdns/files/cjdns.defaults @@ -18,7 +18,7 @@ EOF # make sure config is present (might fail for any reason) uci get cjdns.cjdns.ipv6 >/dev/null 2>&1 - if [ $? -ne 0]; then + if [ $? -ne 0 ]; then exit 1 fi -- 2.30.2