From bbe5325afc790e8fd099991f6cecb36902f35789 Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Fri, 9 Sep 2016 14:48:39 -0700 Subject: [PATCH] Fix the build to account for the change in repository Signed-off-by: Mrunal Patel --- cmd/server/main.go | 2 +- oci/oci.go | 2 +- server/runtime.go | 4 ++-- server/server.go | 4 ++-- server/utils.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/server/main.go b/cmd/server/main.go index c774dfee..f165a60d 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -5,8 +5,8 @@ import ( "net" "os" + "github.com/kubernetes-incubator/ocid/server" "github.com/kubernetes/kubernetes/pkg/kubelet/api/v1alpha1/runtime" - "github.com/mrunalp/ocid/server" "github.com/urfave/cli" "google.golang.org/grpc" ) diff --git a/oci/oci.go b/oci/oci.go index 1035d4b8..3175ab91 100644 --- a/oci/oci.go +++ b/oci/oci.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/mrunalp/ocid/utils" + "github.com/kubernetes-incubator/ocid/utils" "github.com/opencontainers/runtime-spec/specs-go" ) diff --git a/server/runtime.go b/server/runtime.go index 0a61cd2f..dc936d82 100644 --- a/server/runtime.go +++ b/server/runtime.go @@ -6,9 +6,9 @@ import ( "path/filepath" "github.com/Sirupsen/logrus" + "github.com/kubernetes-incubator/ocid/oci" + "github.com/kubernetes-incubator/ocid/utils" pb "github.com/kubernetes/kubernetes/pkg/kubelet/api/v1alpha1/runtime" - "github.com/mrunalp/ocid/oci" - "github.com/mrunalp/ocid/utils" "github.com/opencontainers/ocitools/generate" "golang.org/x/net/context" ) diff --git a/server/server.go b/server/server.go index 3c1f6abb..2265471c 100644 --- a/server/server.go +++ b/server/server.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/mrunalp/ocid/oci" - "github.com/mrunalp/ocid/utils" + "github.com/kubernetes-incubator/ocid/oci" + "github.com/kubernetes-incubator/ocid/utils" "github.com/rajatchopra/ocicni" ) diff --git a/server/utils.go b/server/utils.go index 7853c127..ebd7e4a4 100644 --- a/server/utils.go +++ b/server/utils.go @@ -9,7 +9,7 @@ import ( "runtime" "strings" - "github.com/mrunalp/ocid/utils" + "github.com/kubernetes-incubator/ocid/utils" "github.com/opencontainers/ocitools/generate" )