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

Commit c5dc88a

Browse files
committed
Windows binaries need .exe extension
1 parent 14a9cd7 commit c5dc88a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

misc/build_binaries.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ done
1919
GOOS=windows
2020
for GOARCH in 386 amd64; do
2121
echo Building Dio for ${GOOS} + ${GOARCH}
22-
go build -o dio-${GOOS}-${GOARCH} ..
23-
sha256sum dio-${GOOS}-${GOARCH} > dio-${GOOS}-${GOARCH}.SHA256
22+
go build -o dio-${GOOS}-${GOARCH}.exe ..
23+
sha256sum dio-${GOOS}-${GOARCH}.exe > dio-${GOOS}-${GOARCH}.exe.SHA256
2424
done
2525

2626
GOOS=linux

0 commit comments

Comments
 (0)