Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ 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/main.go

pass:
mkdir -p bin
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <string.h>
#include <stdlib.h>
#include "secretservice_linux.h"
#include "secretservice.h"

const SecretSchema *docker_get_schema(void)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package secretservice
/*
#cgo pkg-config: libsecret-1

#include "secretservice_linux.h"
#include "secretservice.h"
#include <stdlib.h>
*/
import "C"
Expand Down
File renamed without changes.