diff --git a/ip/ipmasq.go b/ip/ipmasq.go index 665189bc..7f8740df 100644 --- a/ip/ipmasq.go +++ b/ip/ipmasq.go @@ -18,7 +18,7 @@ import ( "fmt" "net" - "github.com/appc/cni/Godeps/_workspace/src/github.com/coreos/go-iptables/iptables" + "github.com/coreos/go-iptables/iptables" ) // SetupIPMasq installs iptables rules to masquerade traffic diff --git a/ip/link.go b/ip/link.go index c99f4f3c..3936ed9d 100644 --- a/ip/link.go +++ b/ip/link.go @@ -20,7 +20,7 @@ import ( "net" "os" - "github.com/appc/cni/Godeps/_workspace/src/github.com/vishvananda/netlink" + "github.com/vishvananda/netlink" ) func makeVethPair(name, peer string, mtu int) (netlink.Link, error) { diff --git a/ip/route.go b/ip/route.go index f310f1e3..04e660ef 100644 --- a/ip/route.go +++ b/ip/route.go @@ -17,7 +17,7 @@ package ip import ( "net" - "github.com/appc/cni/Godeps/_workspace/src/github.com/vishvananda/netlink" + "github.com/vishvananda/netlink" ) // AddDefaultRoute sets the default route on the given gateway. diff --git a/plugin/ipam.go b/plugin/ipam.go index f5a50333..6718ed24 100644 --- a/plugin/ipam.go +++ b/plugin/ipam.go @@ -23,8 +23,8 @@ import ( "path/filepath" "strings" - "github.com/appc/cni/Godeps/_workspace/src/github.com/vishvananda/netlink" "github.com/appc/cni/pkg/ip" + "github.com/vishvananda/netlink" ) // Find returns the full path of the plugin by searching in CNI_PATH