We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511bd85 commit 6bb7903Copy full SHA for 6bb7903
install/install.sh
@@ -202,7 +202,7 @@ detect_arch() {
202
esac
203
204
# `uname -m` in some cases mis-reports 32-bit OS as 64-bit, so double check
205
- if [ "${arch}" = "x64" ] && [ "$(getconf LONG_BIT)" -eq 32 ]; then
+ if [ "${arch}" = "x86_64" ] && [ "$(getconf LONG_BIT)" -eq 32 ]; then
206
arch=i686
207
elif [ "${arch}" = "aarch64" ] && [ "$(getconf LONG_BIT)" -eq 32 ]; then
208
arch=arm
0 commit comments