File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,9 @@ Bug fixes:
52
52
[ #5608 ] ( https://github.com/commercialhaskell/stack/pull/5608 )
53
53
* On Unix-like operating systems, respect the ` with-gcc ` option when installing
54
54
GHC. See [ #5609 ] ( https://github.com/commercialhaskell/stack/pull/5609 )
55
+ * Fixed logic in ` get_isa() ` in ` get-stack.sh ` to exclude systems that don't
56
+ have x86 in their ` uname -m ` output. See
57
+ [ 5792] ( https://github.com/commercialhaskell/stack/issues/5792 ) .
55
58
56
59
## v2.7.5
57
60
Original file line number Diff line number Diff line change @@ -75,8 +75,10 @@ get_isa() {
75
75
echo arm
76
76
elif uname -m | grep -q aarch64 ; then
77
77
echo aarch64
78
- else
78
+ elif uname -m | grep -q x86 ; then
79
79
echo x86
80
+ else
81
+ die " $( uname -m) is not a supported instruction set"
80
82
fi
81
83
}
82
84
You can’t perform that action at this time.
0 commit comments