Update install_deb.sh

Use uname -m, not uname -p (which is not portable, and doesn't work on my x86_64 Bullseye install)
master
AG 1 year ago committed by GitHub
parent b85e13fb5f
commit 23639915c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save