Fix broken if syntax
This commit is contained in:
parent
8d67097a32
commit
8b69b26e60
2
neofetch
2
neofetch
|
@ -513,7 +513,7 @@ ascii_distro="$distro"
|
||||||
|
|
||||||
getdistro () {
|
getdistro () {
|
||||||
# Get architecture
|
# Get architecture
|
||||||
[ "$os_arch" == "on" ]
|
if [ "$os_arch" == "on" ]; then
|
||||||
case "$(getconf LONG_BIT)" in
|
case "$(getconf LONG_BIT)" in
|
||||||
64) distro+=" 64-bit" ;;
|
64) distro+=" 64-bit" ;;
|
||||||
32) distro+=" 32-bit" ;;
|
32) distro+=" 32-bit" ;;
|
||||||
|
|
Reference in New Issue