File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ VERSION := $(shell grep 'const Version' credentials/version.go | awk -F'"' '{ pr
6
6
all : test
7
7
8
8
deps :
9
- go get github.com/golang/lint/golint
9
+ go get -u github.com/golang/lint/golint
10
10
11
11
clean :
12
12
rm -rf bin
13
13
rm -rf release
14
14
15
15
osxkeychain :
16
- mkdir bin
16
+ mkdir -p bin
17
17
go build -ldflags -s -o bin/docker-credential-osxkeychain osxkeychain/cmd/main_darwin.go
18
18
19
19
osxcodesign : osxkeychain
@@ -27,15 +27,15 @@ osxrelease: clean vet_osx lint fmt test osxcodesign
27
27
cd bin && tar cvfz ../release/docker-credential-osxkeychain-v$(VERSION ) -amd64.tar.gz docker-credential-osxkeychain
28
28
29
29
secretservice :
30
- mkdir bin
30
+ mkdir -p bin
31
31
go build -o bin/docker-credential-secretservice secretservice/cmd/main_linux.go
32
32
33
33
pass :
34
34
mkdir -p bin
35
35
go build -o bin/docker-credential-pass pass/cmd/main_linux.go
36
36
37
37
wincred :
38
- mkdir bin
38
+ mkdir -p bin
39
39
go build -o bin/docker-credential-wincred.exe wincred/cmd/main_windows.go
40
40
41
41
winrelease : clean vet_win lint fmt test wincred
You can’t perform that action at this time.
0 commit comments