Skip to content

Commit

Permalink
Update install_deb.sh
Browse files Browse the repository at this point in the history
Use uname -m, not uname -p (which is not portable, and doesn't work on my x86_64 Bullseye install)
  • Loading branch information
mzpqnxow authored Oct 23, 2023
1 parent b85e13f commit 2363991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

LLVM_VERSION=12

ARCH=$(uname -p)
ARCH=$(uname -m)

if [[ $ARCH = "x86_64" ]]; then
SHFMT_URL=https://github.com/mvdan/sh/releases/download/v3.4.3/shfmt_v3.4.3_linux_amd64
Expand Down

0 comments on commit 2363991

Please sign in to comment.