Skip to content

Commit

Permalink
Use relative paths in Makefile for "go build"
Browse files Browse the repository at this point in the history
  • Loading branch information
ZauberNerd committed Aug 25, 2022
1 parent ebd9dc6 commit 2851656
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -10,7 +10,7 @@ clean:

osxkeychain:
mkdir -p bin
go build -ldflags -s -o bin/docker-credential-osxkeychain osxkeychain/cmd/
go build -ldflags -s -o bin/docker-credential-osxkeychain ./osxkeychain/cmd/

osxcodesign: osxkeychain
$(eval SIGNINGHASH = $(shell security find-identity -v -p codesigning | grep "Developer ID Application: Docker Inc" | cut -d ' ' -f 4))
Expand All @@ -19,15 +19,15 @@ osxcodesign: osxkeychain

secretservice:
mkdir -p bin
go build -o bin/docker-credential-secretservice secretservice/cmd/
go build -o bin/docker-credential-secretservice ./secretservice/cmd/

pass:
mkdir -p bin
go build -o bin/docker-credential-pass pass/cmd/
go build -o bin/docker-credential-pass ./pass/cmd/

wincred:
mkdir -p bin
go build -o bin/docker-credential-wincred.exe wincred/cmd/
go build -o bin/docker-credential-wincred.exe ./wincred/cmd/

linuxrelease:
mkdir -p release
Expand Down

0 comments on commit 2851656

Please sign in to comment.