Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
paramah authored Sep 17, 2023
1 parent 0e941c2 commit 5623d62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ readme="https://leaddocker.tech"
determine_os() {
case "$(uname -s)" in
Darwin)
echo "Darwin"
echo "darwin"
;;
MINGW64*)
echo "Windows"
echo "windows"
;;
*)
echo "Linux"
echo "linux"
;;
esac
}
Expand All @@ -24,13 +24,13 @@ determine_arch() {
echo "armv7"
;;
x86_64)
echo "x86_64"
echo "amd64"
;;
arm64)
echo "arm64"
;;
*)
echo "x86_64"
echo "amd64"
;;
esac
}
Expand Down

0 comments on commit 5623d62

Please sign in to comment.