File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type Options struct {
22
22
ProxyPrefix string `flag:"proxy-prefix" cfg:"proxy-prefix"`
23
23
HttpAddress string `flag:"http-address" cfg:"http_address"`
24
24
HttpsAddress string `flag:"https-address" cfg:"https_address"`
25
- DebugAddress string `flag:"debug-address", cfg:"debug_address"`
25
+ DebugAddress string `flag:"debug-address" cfg:"debug_address"`
26
26
UpstreamFlush time.Duration `flag:"upstream-flush" cfg:"upstream_flush"`
27
27
RedirectURL string `flag:"redirect-url" cfg:"redirect_url"`
28
28
ClientID string `flag:"client-id" cfg:"client_id" env:"OAUTH2_PROXY_CLIENT_ID"`
Original file line number Diff line number Diff line change 5
5
"testing"
6
6
"time"
7
7
8
- "github.com/openshift/oauth-proxy/cookie"
9
8
"github.com/bmizerany/assert"
9
+ "github.com/openshift/oauth-proxy/cookie"
10
10
)
11
11
12
12
const secret = "0123456789abcdefghijklmnopqrstuv"
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
echo " gofmt"
5
- diff -u <( echo -n) <( gofmt -d $( find . -type f -name ' *.go' -not -path " ./.godeps/*" ) )
5
+ diff -u <( echo -n) <( gofmt -d $( find . -type f -name ' *.go' -not -path " ./.godeps/*" -not -path " ./vendor/* " ) )
6
6
echo " go vet"
7
7
go vet ./...
8
8
echo " go test"
You can’t perform that action at this time.
0 commit comments