Skip to content

Commit c1065e6

Browse files
committed
fix(Makefile): Restore local build/install capability
1 parent 1e765a8 commit c1065e6

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

client/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ glideup:
3030
${DEV_ENV_CMD} glide up
3131

3232
build:
33-
${DEV_ENV_CMD} go build -a -installsuffix cgo -ldflags '-s' -o deis .
33+
${DEV_ENV_CMD} make binary-build
3434
@$(call check-static-binary,deis)
3535

36-
install: build
36+
binary-build:
37+
go build -a -installsuffix cgo -ldflags '-s' -o deis .
38+
39+
install:
3740
cp deis $$GOPATH/bin
3841

3942
installer: build

0 commit comments

Comments
 (0)