Guard against empty

This commit is contained in:
Arun Prakash Jana 2020-01-12 00:26:03 +05:30
parent f1791af2ab
commit 3c69e6ccac
No known key found for this signature in database
GPG Key ID: A75979F35C080412
3 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,7 @@
n ()
{
# Block nesting of nnn in subshells
if [ "${NNNLVL:-0}" -ge 1 ]; then
if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then
echo "nnn is already running"
return
fi

View File

@ -4,9 +4,11 @@
function n --description 'support nnn quit and change directory'
# Block nesting of nnn in subshells
if [ (expr $NNNLVL + 0) -ge 1 ]
echo "nnn is already running"
return
if test -n NNNLVL
if [ (expr $NNNLVL + 0) -ge 1 ]
echo "nnn is already running"
return
end
end
# The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)

View File

@ -1,7 +1,7 @@
n ()
{
# Block nesting of nnn in subshells
if [ "${NNNLVL:-0}" -ge 1 ]; then
if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then
echo "nnn is already running"
return
fi