1
0
mirror of https://github.com/kha7iq/pingme.git synced 2025-05-15 06:10:12 -07:00

fix: check for arch and set value

This commit is contained in:
Khaliq 2023-11-30 00:35:58 +08:00
parent 5220398da3
commit 7277d3386f

View File

@ -41,6 +41,11 @@ fi
machine=$(uname -m)
if [ "$machine" = "x86_64" ]; then
machine="amd64"
fi
case $(uname -s) in
Linux)
os="Linux"