Skip to content

Commit 37b1689

Browse files
authored
Merge pull request #5114 from proger/patch-1
get-stack.sh: get_isa to detect armv7l/armv8l
2 parents bdfd0e6 + 845ded5 commit 37b1689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/scripts/get-stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ post_install_separator() {
7272

7373
# determines the the CPU's instruction set
7474
get_isa() {
75-
if arch | grep -q armv7 ; then
75+
if arch | grep -Eq 'armv[78]l?' ; then
7676
echo arm
7777
elif arch | grep -q aarch64 ; then
7878
echo aarch64

0 commit comments

Comments
 (0)