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

secretservice: use go build constraint

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-05-28 20:23:33 +02:00
parent 9f5511c8d5
commit 6a2f53622b
5 changed files with 8 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build linux && cgo
package main
import (
"github.com/docker/docker-credential-helpers/credentials"
"github.com/docker/docker-credential-helpers/secretservice"
)
func main() {
credentials.Serve(secretservice.Secretservice{})
}