We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37dade9 commit e90ae5aCopy full SHA for e90ae5a
scripts/get_latest.sh
@@ -7,20 +7,14 @@ elif [[ "$(uname)" == "Linux" ]]; then
7
PLATFORM="linux"
8
elif [[ "$(uname)" =~ "MINGW" ]]; then
9
PLATFORM="windows"
10
- echo "Sorry, we don't have pre-built binaries for Windows yet, but it's very simple to build howto from source!"
11
- echo "git clone https://github.com/Guitaricet/howto"
12
- echo "cd howto"
13
- echo "go build"
14
- echo "If you don't have Go installed, follow https://go.dev for instrucitons"
15
- exit 1
16
else
17
echo "Unsupported platform: $(uname)"
18
exit 1
19
fi
20
21
# Determine the architecture
22
if [[ "$(uname -m)" == "x86_64" ]]; then
23
- ARCH="386"
+ ARCH="amd64"
24
elif [[ "$(uname -m)" == "arm64" ]]; then
25
ARCH="arm64"
26
0 commit comments