mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix shellcheck report
This commit is contained in:
parent
ac72d2c66e
commit
bd95763c7a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue