diff options
author | Dmytro Meleshko <dmytro.meleshko@gmail.com> | 2019-10-28 12:09:09 +0200 |
---|---|---|
committer | Dmytro Meleshko <dmytro.meleshko@gmail.com> | 2019-10-28 12:09:09 +0200 |
commit | c86a80ca75fd54ada54f0abc4cd71e7fda87d7a3 (patch) | |
tree | 6adf0363327f6bc5a671f7954b38b55bfcb11f34 /examples | |
parent | e7fa9d9d694daf5722cef2a929bc2681fc9bff75 (diff) | |
download | ranger-c86a80ca75fd54ada54f0abc4cd71e7fda87d7a3.tar.gz |
Replaced `[[` with POSIX-compatible `[`
Diffstat (limited to 'examples')
-rw-r--r-- | examples/bash_automatic_cd.sh | 2 |
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" |