Skip to content

Commit

Permalink
Merge pull request NixOS#7056 from hiroqn/fix-uname
Browse files Browse the repository at this point in the history
Fix `uname -m` return value for armv6l/armv7l
  • Loading branch information
edolstra authored Sep 24, 2022
2 parents c13007f + ca22936 commit cacfc32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install.in
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ case "$(uname -s).$(uname -m)" in
path=@tarballPath_aarch64-linux@
system=aarch64-linux
;;
Linux.armv6l_linux)
Linux.armv6l)
hash=@tarballHash_armv6l-linux@
path=@tarballPath_armv6l-linux@
system=armv6l-linux
;;
Linux.armv7l_linux)
Linux.armv7l)
hash=@tarballHash_armv7l-linux@
path=@tarballPath_armv7l-linux@
system=armv7l-linux
Expand Down

0 comments on commit cacfc32

Please sign in to comment.