From 9a0c126d3348de781e76bcfa57862fdbc787b304 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sun, 24 Apr 2016 14:27:24 +1000 Subject: [PATCH] Fix exit status --- neofetch | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 1cefea04..fb8155b6 100755 --- a/neofetch +++ b/neofetch @@ -3002,6 +3002,8 @@ if [ "$scrot" == "on" ]; then fi # Show error messages -[ "$verbose" == "on" ] && printf "$err" +if [ "$verbose" == "on" ]; then + printf "$err" +fi # }}}