diff options
-rwxr-xr-x | ranger/data/scope.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/data/scope.sh b/ranger/data/scope.sh index 29f4d718..27a527ca 100755 --- a/ranger/data/scope.sh +++ b/ranger/data/scope.sh @@ -158,7 +158,7 @@ handle_image() { # rm -- "${IMAGE_CACHE_PATH}" # return # fi - # # bsdtar and unzip need escaiping + # # bsdtar and unzip need escaping. # fne=$(echo -n "$fn" | sed 's/[][*?\]/\\\0/g') # bsdtar --extract --to-stdout --file "${FILE_PATH}" "$fne" > \ # "${IMAGE_CACHE_PATH}" && exit 6 @@ -167,7 +167,7 @@ handle_image() { # unrar p -p- -inul -- "${FILE_PATH}" "$fn" > "${IMAGE_CACHE_PATH}" && exit 6 # elif [ "$zip" ]; then # unzip -pP "" -- "${FILE_PATH}" "$fne" > "${IMAGE_CACHE_PATH}" && exit 6 - # fi + # else return; fi # rm -- "${IMAGE_CACHE_PATH}" # ;; esac |