Skip to content

Commit

Permalink
Fix build (oauth2-proxy#813)
Browse files Browse the repository at this point in the history
* Fix build

Without the v7 path it builds old version of the project (v3.2.0).

* Update CHANGELOG.md
thiagocaiubi authored Oct 3, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 9bc618b commit 8be97f2
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -30,6 +30,7 @@
- [#616](https://github.com/oauth2-proxy/oauth2-proxy/pull/616) Add support to ensure user belongs in required groups when using the OIDC provider (@stefansedich)
- [#800](https://github.com/oauth2-proxy/oauth2-proxy/pull/800) Fix import path for v7 (@johejo)
- [#783](https://github.com/oauth2-proxy/oauth2-proxy/pull/783) Update Go to 1.15 (@johejo)
- [#813](https://github.com/oauth2-proxy/oauth2-proxy/pull/813) Fix build (@thiagocaiubi)

# v6.1.1

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ lint: validate-go-version
build: validate-go-version clean $(BINARY)

$(BINARY):
GO111MODULE=on CGO_ENABLED=0 $(GO) build -a -installsuffix cgo -ldflags="-X main.VERSION=${VERSION}" -o $@ github.com/oauth2-proxy/oauth2-proxy
GO111MODULE=on CGO_ENABLED=0 $(GO) build -a -installsuffix cgo -ldflags="-X main.VERSION=${VERSION}" -o $@ github.com/oauth2-proxy/oauth2-proxy/v7

.PHONY: docker
docker:

0 comments on commit 8be97f2

Please sign in to comment.