about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDmytro Meleshko <dmytro.meleshko@gmail.com>2019-10-28 12:09:09 +0200
committerDmytro Meleshko <dmytro.meleshko@gmail.com>2019-10-28 12:09:09 +0200
commitc86a80ca75fd54ada54f0abc4cd71e7fda87d7a3 (patch)
tree6adf0363327f6bc5a671f7954b38b55bfcb11f34
parente7fa9d9d694daf5722cef2a929bc2681fc9bff75 (diff)
downloadranger-c86a80ca75fd54ada54f0abc4cd71e7fda87d7a3.tar.gz
Replaced `[[` with POSIX-compatible `[`
-rw-r--r--examples/bash_automatic_cd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bash_automatic_cd.sh b/examples/bash_automatic_cd.sh
index 642d6f29..8bf58a9f 100644
--- a/examples/bash_automatic_cd.sh
+++ b/examples/bash_automatic_cd.sh
@@ -11,7 +11,7 @@ ranger-cd() {
     local temp_file chosen_dir
     temp_file="$(mktemp -t "${0}.XXXXXXXXXX")"
     ranger --choosedir="$temp_file" -- "${@:-$PWD}"
-    if chosen_dir="$(<"$temp_file")" && [[ -n "$chosen_dir" ]]; then
+    if chosen_dir="$(<"$temp_file")" && [ -n "$chosen_dir" ]; then
         cd -- "$chosen_dir"
     fi
     rm -f -- "$temp_file"