1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

simplify "go build" commands

There's no need to specify the file to build, as we're building the
"main" packages as a whole.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2022-08-21 15:30:16 +02:00
parent 5302241995
commit e847de4b42
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -14,7 +14,7 @@ clean:
osxkeychain:
mkdir -p bin
go build -ldflags -s -o bin/docker-credential-osxkeychain osxkeychain/cmd/main_darwin.go
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))
@@ -23,15 +23,15 @@ osxcodesign: osxkeychain
secretservice:
mkdir -p bin
go build -o bin/docker-credential-secretservice secretservice/cmd/main_linux.go
go build -o bin/docker-credential-secretservice secretservice/cmd/
pass:
mkdir -p bin
go build -o bin/docker-credential-pass pass/cmd/main.go
go build -o bin/docker-credential-pass pass/cmd/
wincred:
mkdir -p bin
go build -o bin/docker-credential-wincred.exe wincred/cmd/main_windows.go
go build -o bin/docker-credential-wincred.exe wincred/cmd/
linuxrelease:
mkdir -p release