Skip to content

Commit

Permalink
scripts: fix protobuf URL on arm64
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Sep 13, 2023
1 parent e2d9a1b commit 9b43daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install-protobuf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PROTOBUF_DIR=$(mktemp -d)
case $GOARCH in

arm64)
wget -O "$PROTOBUF_DIR/protobuf" "https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOBUF_VERSION/protoc-$PROTOBUF_VERSION-linux-aarch64.zip"
wget -O "$PROTOBUF_DIR/protobuf" "https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOBUF_VERSION/protoc-$PROTOBUF_VERSION-linux-aarch_64.zip"
unzip "$PROTOBUF_DIR/protobuf" -d /usr/local
;;

Expand Down

0 comments on commit 9b43daa

Please sign in to comment.