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 10
10
11
11
osxkeychain :
12
12
mkdir -p bin
13
- go build -ldflags -s -o bin/docker-credential-osxkeychain osxkeychain/cmd/
13
+ go build -ldflags -s -o bin/docker-credential-osxkeychain ./ osxkeychain/cmd/
14
14
15
15
osxcodesign : osxkeychain
16
16
$(eval SIGNINGHASH = $(shell security find-identity -v -p codesigning | grep "Developer ID Application: Docker Inc" | cut -d ' ' -f 4) )
@@ -19,15 +19,15 @@ osxcodesign: osxkeychain
19
19
20
20
secretservice :
21
21
mkdir -p bin
22
- go build -o bin/docker-credential-secretservice secretservice/cmd/
22
+ go build -o bin/docker-credential-secretservice ./ secretservice/cmd/
23
23
24
24
pass :
25
25
mkdir -p bin
26
- go build -o bin/docker-credential-pass pass/cmd/
26
+ go build -o bin/docker-credential-pass ./ pass/cmd/
27
27
28
28
wincred :
29
29
mkdir -p bin
30
- go build -o bin/docker-credential-wincred.exe wincred/cmd/
30
+ go build -o bin/docker-credential-wincred.exe ./ wincred/cmd/
31
31
32
32
linuxrelease :
33
33
mkdir -p release
You can’t perform that action at this time.
0 commit comments