projects
/
feed
/
routing.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c40d0e
)
cjdns: uci-defaults: fix shell syntax error
author
Daniel Golle
<daniel@makrotopia.org>
Thu, 30 Apr 2015 17:19:10 +0000
(19:19 +0200)
committer
Daniel 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
patch
|
blob
|
history
diff --git
a/cjdns/files/cjdns.defaults
b/cjdns/files/cjdns.defaults
index f6ca7720ed57db0aef9a793681e0ece0892eb0b5..0624daf7358973f37be071645ebd8ec0a813ef4f 100644
(file)
--- 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