From 8b69b26e601d07cfa1a26a88d717728ce92b9f61 Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 4 Apr 2016 22:21:17 +1000 Subject: [PATCH] Fix broken if syntax --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 2111c61b..3144805c 100755 --- a/neofetch +++ b/neofetch @@ -513,7 +513,7 @@ ascii_distro="$distro" getdistro () { # Get architecture - [ "$os_arch" == "on" ] + if [ "$os_arch" == "on" ]; then case "$(getconf LONG_BIT)" in 64) distro+=" 64-bit" ;; 32) distro+=" 32-bit" ;;