Skip to content

Commit eb9650e

Browse files
authored
Chore: Fixes make gen-purls to use 64-bit windows (#4170)
1 parent 5ccf40f commit eb9650e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ gen-purls: # Generate purls
133133
LC_ALL=C sort > build/package/purls-darwin.txt
134134

135135
@echo "==> Generating Windows purls"
136-
GOOS=windows GOARCH=386 go build -trimpath -mod=readonly -o bin/atlas-win ./cmd/atlas
136+
GOOS=windows GOARCH=amd64 go build -trimpath -mod=readonly -o bin/atlas-win ./cmd/atlas
137137
go version -m ./bin/atlas-win | \
138138
awk '$$1 == "dep" || $$1 == "=>" { print "pkg:golang/" $$2 "@" $$3 }' | \
139139
LC_ALL=C sort > build/package/purls-win.txt

0 commit comments

Comments
 (0)