Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pull/64'
Browse files Browse the repository at this point in the history
* origin/pull/64:
  Run go mod tidy
  Let go build handle rebuilding
  • Loading branch information
Foxboron committed Oct 5, 2024
2 parents 8d37f73 + 68adcf8 commit b59609c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ BINDIR := $(PREFIX)/bin
LIBDIR := $(PREFIX)/lib
SHRDIR := $(PREFIX)/share
BINS = $(notdir $(wildcard cmd/*))
SRC = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
TAG = $(shell git describe --abbrev=0 --tags)

all: build
build: $(BINS)

$(addprefix bin/,$(BINS)): $(SRC)
.PHONY: $(addprefix bin/,$(BINS))
$(addprefix bin/,$(BINS)):
go build -buildmode=pie -trimpath -o $@ ./cmd/$(@F)

# TODO: Needs to be better written
Expand Down
4 changes: 0 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ github.com/coreos/go-oidc/v3 v3.11.0/go.mod h1:gE3LgjOgFoHi9a4ce4/tJczr0Ai2/BoDh
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/foxboron/go-tpm-keyfiles v0.0.0-20240725205618-b7c5a84edf9d h1:odwhCo3olsbN0fkXxCSH3aYz2OhrkcH93oU2QKEcI9s=
github.com/foxboron/go-tpm-keyfiles v0.0.0-20240725205618-b7c5a84edf9d/go.mod h1:uAyTlAUxchYuiFjTHmuIEJ4nGSm7iOPaGcAyA81fJ80=
github.com/foxboron/go-tpm-keyfiles v0.0.0-20240805214234-f870d6f1ff68 h1:u1Lbb2hWuU302IAaCccDkzPWLgpMBfvva/EMDutEUXk=
github.com/foxboron/go-tpm-keyfiles v0.0.0-20240805214234-f870d6f1ff68/go.mod h1:uAyTlAUxchYuiFjTHmuIEJ4nGSm7iOPaGcAyA81fJ80=
github.com/foxboron/ssh-tpm-ca-authority v0.0.0-20240803200907-c91839acffbd h1:mVBXLv2BBWDQl36FBX+EZjr7KjlOBqi+lb5O2TU+qwI=
github.com/foxboron/ssh-tpm-ca-authority v0.0.0-20240803200907-c91839acffbd/go.mod h1:aJ0EczGmWlB5PFj4/h5+5LGVU/sUEzmqvr+P1Z6a4lo=
github.com/foxboron/ssh-tpm-ca-authority v0.0.0-20240806093457-88eeced81948 h1:Snzez6U0L1Jl9TtL5zSFAtV/ahRAM+3A+k1fNMTmSxw=
github.com/foxboron/ssh-tpm-ca-authority v0.0.0-20240806093457-88eeced81948/go.mod h1:7BQDgpVVyISJ9W4O52KCbdBgQuujnZG2Ytuep1ya5NE=
github.com/foxboron/swtpm_test v0.0.0-20230726224112-46aaafdf7006 h1:50sW4r0PcvlpG4PV8tYh2RVCapszJgaOLRCS2subvV4=
Expand Down

0 comments on commit b59609c

Please sign in to comment.