Skip to content

Commit

Permalink
Fix macos arm target to comply with release workflows
Browse files Browse the repository at this point in the history
Co-authored-by: Shwetha Gururaj <gururajsh@vmware.com>
Co-authored-by: Cristhian Pena <cpena@vmware.com>
  • Loading branch information
3 people committed Jun 15, 2023
1 parent 9a21cb0 commit 591632a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -180,9 +180,9 @@ out/cf-cli_osx: $(GOSRC)
GOARCH=amd64 GOOS=darwin go build \
-a -ldflags "$(LD_FLAGS)" -o out/cf-cli_osx .

out/cf-cli_osx_arm: $(GOSRC)
out/cf-cli_macosarm: $(GOSRC)
GOARCH=arm64 GOOS=darwin go build \
-a -ldflags "$(LD_FLAGS)" -o out/cf-cli_osx_arm .
-a -ldflags "$(LD_FLAGS)" -o out/cf-cli_macosarm .

out/cf-cli_win32.exe: $(GOSRC) rsrc.syso
GOARCH=386 GOOS=windows go build -tags="forceposix" -o out/cf-cli_win32.exe -ldflags "$(LD_FLAGS)" .
Expand Down

0 comments on commit 591632a

Please sign in to comment.