Skip to content

Commit

Permalink
Merge pull request #236 from ZauberNerd/relative-paths-makefile
Browse files Browse the repository at this point in the history
Use relative paths in Makefile for "go build"
  • Loading branch information
thaJeztah authored Aug 25, 2022
2 parents ebd9dc6 + 3289c31 commit 5124911
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
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 5124911

Please sign in to comment.