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 <daniel@makrotopia.org>
This commit is contained in:
Daniel Golle 2015-04-30 19:19:10 +02:00
parent 1c40d0e54d
commit 25d637576d
1 changed files with 1 additions and 1 deletions

View 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