File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -31,26 +31,16 @@ OPTIONS="-o Debug::NoLocking=1
31
31
32
32
# Detect system architecture to know which binaries of AppImage tools
33
33
# should be downloaded and used.
34
- case " $( uname -i ) " in
34
+ case " $( uname -m ) " in
35
35
x86_64|amd64)
36
36
# echo "x86-64 system architecture"
37
37
SYSTEM_ARCH=" x86_64" ;;
38
38
i? 86)
39
39
# echo "x86 system architecture"
40
40
SYSTEM_ARCH=" i686" ;;
41
- # arm*)
41
+ # arm*|aarch* )
42
42
# echo "ARM system architecture"
43
43
# SYSTEM_ARCH="";;
44
- unknown|AuthenticAMD|GenuineIntel)
45
- # uname -i not answer on debian, then:
46
- case " $( uname -m) " in
47
- x86_64|amd64)
48
- # echo "x86-64 system architecture"
49
- SYSTEM_ARCH=" x86_64" ;;
50
- i? 86)
51
- # echo "x86 system architecture"
52
- SYSTEM_ARCH=" i686" ;;
53
- esac ;;
54
44
* )
55
45
echo " Unsupported system architecture"
56
46
exit 1;;
You can’t perform that action at this time.
0 commit comments