You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems that the non-portable -p option doesn't work on my x86_64 Bullseye machine, so I get:
11:25:32 › ./install_deb.sh
This script only supports x86_64 and aarch64
11:24:54 › uname --help
Usage: uname [OPTION]...
Print certain system information. With no OPTION, same as -s.
-a, --all print all information, in the following order,
except omit -p and -i if unknown:
-s, --kernel-name print the kernel name
-n, --nodename print the network node hostname
-r, --kernel-release print the kernel release
-v, --kernel-version print the kernel version
-m, --machine print the machine hardware name
-p, --processor print the processor type (non-portable)
-i, --hardware-platform print the hardware platform (non-portable)
Switching from using -p to -m gives the expected output (x86_64)
The text was updated successfully, but these errors were encountered:
Wow! You are absolutely right! I guess we never really tested on other distros, mainly on Ubuntu LTSs with x86 and ARM.
Thank you for the fix! Merging...
See PR #381
Seems that the non-portable
-p
option doesn't work on my x86_64 Bullseye machine, so I get:Switching from using
-p
to-m
gives the expected output (x86_64
)The text was updated successfully, but these errors were encountered: