Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bin/
cookie.txt
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: build install

build:
go build -o bin/go-openconnect-sso main.go

install: build
cp bin/go-openconnect-sso ~/go/bin/
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ go 1.16
require (
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
github.com/go-kit/kit v0.10.0
github.com/mxschmitt/playwright-go v0.1100.1-0.20210430103100-de638a4c485a
github.com/playwright-community/playwright-go v0.4401.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
Loading