Skip to content

Commit be43656

Browse files
committed
Replace go build with godep go build
1 parent b4973fb commit be43656

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exec-healthz/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TAG = 0.0
55
PREFIX = gcr.io/google_containers/exechealthz
66

77
server: exechealthz.go
8-
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' -o exechealthz ./exechealthz.go
8+
CGO_ENABLED=0 GOOS=linux godep go build -a -installsuffix cgo -ldflags '-w' -o exechealthz ./exechealthz.go
99

1010
container: server
1111
docker build -t $(PREFIX):$(TAG) .

pod-master/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ all: push
99
# make TAG=1.2
1010

1111
podmaster: podmaster.go
12-
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./podmaster.go
12+
CGO_ENABLED=0 GOOS=linux godep go build -a -installsuffix cgo -ldflags '-w' ./podmaster.go
1313

1414
container: podmaster
1515
docker build -t gcr.io/google_containers/podmaster:$(TAG) .

service-loadbalancer/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TAG = 0.0
55
PREFIX = gcr.io/google_containers/servicelb
66

77
server: service_loadbalancer.go
8-
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' -o service_loadbalancer ./service_loadbalancer.go ./loadbalancer_log.go
8+
CGO_ENABLED=0 GOOS=linux godep go build -a -installsuffix cgo -ldflags '-w' -o service_loadbalancer ./service_loadbalancer.go ./loadbalancer_log.go
99

1010
container: server
1111
docker build -t $(PREFIX):$(TAG) .

0 commit comments

Comments
 (0)