From bd95763c7aeb227e9fd452f70753389b3db2785c Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 14 Mar 2021 12:59:24 +0530 Subject: [PATCH] Fix shellcheck report --- plugins/fzcd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fzcd b/plugins/fzcd index a590d966..0c674ead 100755 --- a/plugins/fzcd +++ b/plugins/fzcd @@ -14,7 +14,7 @@ else fi if [ -n "$sel" ]; then - if [ "$sel" = "." ] || (! [ -d "$sel" ] && ! [ -f "$sel" ]); then + if [ "$sel" = "." ] || { ! [ -d "$sel" ] && ! [ -f "$sel" ]; }; then exit 0 fi