From 65ae3abc247863f374c975bc670ff791f0615966 Mon Sep 17 00:00:00 2001 From: NRK Date: Mon, 1 Nov 2021 14:15:49 +0600 Subject: [PATCH] quickfix --- plugins/fzopen | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fzopen b/plugins/fzopen index c44122a0..57035b5c 100755 --- a/plugins/fzopen +++ b/plugins/fzopen @@ -42,8 +42,8 @@ fi if [ "$3" ]; then if [ "$entry" ]; then case "$entry" in - /*) fullpath="$PWD/$entry" ;; - *) fullpath="$entry" ;; + /*) fullpath="$entry" ;; + *) fullpath="$PWD/$entry" ;; esac if [ "-" = "$3" ]; then printf "%s\n" "$fullpath"