Skip to content

Commit

Permalink
Merge pull request #47 from OWASP/smallfixes-makefiles
Browse files Browse the repository at this point in the history
fix typo for arm on macos
  • Loading branch information
commjoen authored Dec 11, 2023
2 parents d8fc6e0 + 2ba2b9d commit 0825d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ env GOOS=linux GOARCH=arm64 go build -o ../wrongsecrets-golang-linux-arm
echo "compiling golang for mac os x (intel)"
env GOOS=darwin GOARCH=amd64 go build -o ../wrongsecrets-golang
echo "compiling golang for mac os x (ARM)"
env GOOS=darwin GOARCH=amd64 go build -o ../wrongsecrets-golang-arm
env GOOS=darwin GOARCH=arm64 go build -o ../wrongsecrets-golang-arm
echo "compiling golang for Windows"
env GOOS=windows GOARCH=amd64 go build -o ../wrongsecrets-golang-windows.exe
cd ..
Expand Down

0 comments on commit 0825d50

Please sign in to comment.