Skip to content

Commit 79839da

Browse files
committed
Fix 32bit check.
Fixes incorrect check for 32 bit architecture.
1 parent 05b8ee1 commit 79839da

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

bin/fetch-configlet

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ ARCH=$(
1818
case $(uname -m) in
1919
*64*)
2020
echo 64bit;;
21-
*32*)
21+
*686*)
22+
echo 32bit;;
23+
*386*)
2224
echo 32bit;;
2325
*)
2426
echo 64bit;;

0 commit comments

Comments
 (0)