aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'README.adoc')
-rw-r--r--README.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.adoc b/README.adoc
index d51dc76..bedacd6 100644
--- a/README.adoc
+++ b/README.adoc
@@ -91,12 +91,12 @@ sdn-navigate () {
READLINE_LINE=
while eval "`sdn "$SDN_L" "$(sdn-cursor)"`"; do
- [[ -z "$cd" ]] || cd "$cd"
- [[ -z "$insert" ]] || {
+ [[ -z $cd ]] || cd "$cd"
+ [[ -z $insert ]] || {
SDN_L="${SDN_L:0:$SDN_P}$insert ${SDN_L:$SDN_P}"
((SDN_P=SDN_P+${#insert}+1))
}
- [[ -z "$helper" ]] && break
+ [[ -z $helper ]] && break
/bin/sh -c "$helper" || break
done
}