Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Add buildvcs=false to Makefile
Browse files Browse the repository at this point in the history
The buildvcs flag indicates whether to stamp binaries with version control information. Disabling it is needed for the arm runner to work.

Signed-off-by: Ashwin Gopalan <agopalan@berkeley.edu>
  • Loading branch information
ashwing123 authored and hallyn committed Aug 1, 2023
1 parent 09ba1b4 commit c502fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: trust

trust: cmd/trust/*.go pkg/trust/*.go pkg/printdirtree/*.go
go build -o trust ./cmd/trust/
go build -buildvcs=false -o trust ./cmd/trust/

clean:
rm -f trust
Expand Down

0 comments on commit c502fdc

Please sign in to comment.