Skip to content

Commit e90ae5a

Browse files
committed
fix installation script architecture
1 parent 37dade9 commit e90ae5a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

scripts/get_latest.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,14 @@ elif [[ "$(uname)" == "Linux" ]]; then
77
PLATFORM="linux"
88
elif [[ "$(uname)" =~ "MINGW" ]]; then
99
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
1610
else
1711
echo "Unsupported platform: $(uname)"
1812
exit 1
1913
fi
2014

2115
# Determine the architecture
2216
if [[ "$(uname -m)" == "x86_64" ]]; then
23-
ARCH="386"
17+
ARCH="amd64"
2418
elif [[ "$(uname -m)" == "arm64" ]]; then
2519
ARCH="arm64"
2620
else

0 commit comments

Comments
 (0)