Skip to content

Commit

Permalink
Merge pull request #8 from humanfactors/exe-extension
Browse files Browse the repository at this point in the history
Add .exe extension for Windows build
  • Loading branch information
tmck-code authored Dec 16, 2021
2 parents b772d92 + c023f3a commit 17293a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ RUN go-bindata -nometadata -nomemcopy -prefix /tmp/ /tmp/cows/... && \

RUN echo "building darwin / amd64" && GOOS=darwin GOARCH=amd64 go build -o pokesay-darwin-amd64 cmd/pokesay.go cmd/bindata.go && \
echo "building linux / amd64" && GOOS=linux GOARCH=amd64 go build -o pokesay-linux-amd64 cmd/pokesay.go cmd/bindata.go && \
echo "building windows / amd64" && GOOS=windows GOARCH=amd64 go build -o pokesay-windows-amd64 cmd/pokesay.go cmd/bindata.go && \
echo "building windows / amd64" && GOOS=windows GOARCH=amd64 go build -o pokesay-windows-amd64.exe cmd/pokesay.go cmd/bindata.go && \
echo "building android / arm64" && GOOS=android GOARCH=arm64 go build -o pokesay-android-arm64 cmd/pokesay.go cmd/bindata.go

0 comments on commit 17293a8

Please sign in to comment.