Commit b07d18d6 authored by Dylan's avatar Dylan

Use 32-bit and 64-bit for arch

parent e75a67f9
...@@ -513,8 +513,12 @@ ascii_distro="$distro" ...@@ -513,8 +513,12 @@ ascii_distro="$distro"
getdistro () { getdistro () {
# Get architecture # Get architecture
[ "$os_arch" == "on" ] && \ [ "$os_arch" == "on" ]
distro+=" $(uname -m)" case "$(getconf LONG_BIT)" in
64) distro+=" 64-bit" ;;
32) distro+=" 32-bit" ;;
esac
fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment