Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 9dda23d

Browse files
committed
misc: fix typo in sha256 checksum filenames
1 parent 9b6db88 commit 9dda23d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

misc/build_binaries.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ export GOARCH=amd64
1313
for GOOS in android darwin freebsd netbsd openbsd plan9 solaris windows linux; do
1414
echo Building Dio for ${GOOS}-${GOARCH}
1515
go build -o dio-${GOOS}-${GOARCH} ..
16-
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-x86.SHA256
16+
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-${GOARCH}.SHA256
1717
done
1818

1919
export GOARCH=arm
2020
for GOOS in android darwin freebsd netbsd openbsd plan9 windows linux; do
2121
echo Building Dio for ${GOOS}-${GOARCH}
2222
go build -o dio-${GOOS}-${GOARCH} ..
23-
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-x86.SHA256
23+
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-${GOARCH}.SHA256
2424
done
2525

2626
export GOARCH=arm64
2727
for GOOS in android darwin freebsd illumos netbsd openbsd linux; do
2828
echo Building Dio for ${GOOS}-${GOARCH}
2929
go build -o dio-${GOOS}-${GOARCH} ..
30-
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-x86.SHA256
30+
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-${GOARCH}.SHA256
3131
done
3232

3333
GOOS=linux

0 commit comments

Comments
 (0)