Fix if statement causing 'exit 1'
This commit is contained in:
parent
18aa82afc8
commit
a03a17a1a7
1 changed files with 3 additions and 1 deletions
4
fetch
4
fetch
|
@ -1992,7 +1992,9 @@ fi
|
|||
printf "%b%s" "\033[?25h"
|
||||
|
||||
# If enabled take a screenshot
|
||||
[ "$scrot" == "on" ] && takescrot
|
||||
if [ "$scrot" == "on" ]; then
|
||||
takescrot
|
||||
fi
|
||||
|
||||
|
||||
# }}}
|
||||
|
|
Loading…
Reference in a new issue