cjdns: uci-defaults: fix shell syntax error
authorDaniel Golle <daniel@makrotopia.org>
Thu, 30 Apr 2015 17:19:10 +0000 (19:19 +0200)
committerDaniel Golle <daniel@makrotopia.org>
Thu, 30 Apr 2015 17:19:10 +0000 (19:19 +0200)
uci-defaults script complained about
sh: missing ]
fix this by adding the missing whitespace which caused the error.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
cjdns/files/cjdns.defaults

index f6ca7720ed57db0aef9a793681e0ece0892eb0b5..0624daf7358973f37be071645ebd8ec0a813ef4f 100644 (file)
@@ -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