From 4c112490afe6b6efda4a2c1e5e4b00eba4a1baec Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sat, 20 Aug 2016 20:37:57 -0700 Subject: [PATCH] Get rid of godep - no deps yet --- Godeps/Godeps.json | 8 -------- Godeps/Readme | 5 ----- Godeps/_workspace/.gitignore | 2 -- Makefile | 2 +- 4 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 Godeps/Godeps.json delete mode 100644 Godeps/Readme delete mode 100644 Godeps/_workspace/.gitignore diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json deleted file mode 100644 index be1078e..0000000 --- a/Godeps/Godeps.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ImportPath": "k8s.io/git-sync", - "GoVersion": "go1.5", - "Packages": [ - "./..." - ], - "Deps": [] -} diff --git a/Godeps/Readme b/Godeps/Readme deleted file mode 100644 index 4cdaa53..0000000 --- a/Godeps/Readme +++ /dev/null @@ -1,5 +0,0 @@ -This directory tree is generated automatically by godep. - -Please do not edit. - -See https://github.com/tools/godep for more information. diff --git a/Godeps/_workspace/.gitignore b/Godeps/_workspace/.gitignore deleted file mode 100644 index f037d68..0000000 --- a/Godeps/_workspace/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/pkg -/bin diff --git a/Makefile b/Makefile index 6797a55..6f14d8f 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ bin/$(BIN)-$(ARCH): $(SRCS) $(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \ /bin/bash -c " \ cd /go/src/$(GO_PKG) && \ - CGO_ENABLED=0 godep go build \ + CGO_ENABLED=0 go build \ -installsuffix cgo \ -ldflags '-w' \ -o $@"