diff options
Diffstat (limited to 'utils.sh')
| -rwxr-xr-x | utils.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -8,8 +8,10 @@ function get_platform { elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then if [ "$(expr substr $(uname -m) 1 6)" == "x86_64" ]; then platform="linux64" - else + elif [ "$(expr substr $(uname -m) 1 4)" == "i686" ]; then platform="linux32" + else + platform="linux" fi elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then platform="mingw64" |
