Swap to using getconf instead of integer overflow as it didn't work on Windows

This commit is contained in:
Dylan 2016-02-01 15:02:42 +11:00
parent da7667202f
commit 1a303e916f
1 changed files with 5 additions and 6 deletions

11
fetch
View File

@ -421,13 +421,12 @@ esac
ascii_distro="$distro" ascii_distro="$distro"
getdistro () { getdistro () {
# Overflow integer to get architecture # Get architecture
if [ "$os_arch" == "on" ]; then if [ "$os_arch" == "on" ]; then
if ((1<<32)); then case "$(getconf LONG_BIT)" in
distro+=" x86_64" 64) distro+=" x86_64" ;;
else 32) distro+=" x86" ;;
distro+=" x86" esac
fi
fi fi
} }