Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit e5434a4

Browse files
committed
Fix bootstrap.{sh,ps1} asset paths
1 parent 216c196 commit e5434a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: bootstrap.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if ($build) {
1919
echo "Downloading pre-built TigerBeetle binary for your machine."
2020
echo ""
2121

22-
curl.exe -Lo tigerbeetle.zip "https://github.com/tigerbeetle/tigerbeetle/releases/download/$version/tigerbeetle-x86_64-windows-$version.zip"
22+
curl.exe -Lo tigerbeetle.zip "https://github.com/tigerbeetle/tigerbeetle/releases/download/$version/tigerbeetle-x86_64-windows.zip"
2323
unzip -qo tigerbeetle.zip
2424
}
2525

Diff for: bootstrap.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
exit 1
3434
fi
3535

36-
curl -sLO "https://github.com/tigerbeetle/tigerbeetle/releases/download/$version/tigerbeetle-$arch-$os-$version.zip"
37-
unzip -qo "tigerbeetle-$arch-$os-$version.zip"
36+
curl -sLO "https://github.com/tigerbeetle/tigerbeetle/releases/download/$version/tigerbeetle-$arch-$os.zip"
37+
unzip -qo "tigerbeetle-$arch-$os.zip"
3838
chmod +x tigerbeetle
3939
else
4040
echo "Building TigerBeetle binary from source for your machine."

0 commit comments

Comments
 (0)