Skip to content

Commit

Permalink
fix commands
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <acidburn@github.com>
  • Loading branch information
Jess Frazelle committed Dec 29, 2018
1 parent 1feeb8f commit cbb0686
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test-container: image-dev ## Run a command in a test container with all the need
@:$(call check_defined, CMD, command to run in the container)
docker run $(DOCKER_FLAGS) \
$(REGISTRY)/$(NAME):dev \
$(CMD)
"$(CMD)"

GRPC_API_DIR=api/grpc
.PHONY:protoc
Expand Down
2 changes: 1 addition & 1 deletion basic.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ifeq ($(GITCOMMIT),)
endif
CTIMEVAR=-X $(PKG)/version.GITCOMMIT=$(GITCOMMIT) -X $(PKG)/version.VERSION=$(VERSION)
GO_LDFLAGS=-ldflags "-w $(CTIMEVAR)"
GO_LDFLAGS_STATIC=-ldflags "-w $(CTIMEVAR) -extldflags -static"
GO_LDFLAGS_STATIC=-ldflags "-w $(CTIMEVAR)"

# Set our default go compiler
GO := go
Expand Down

0 comments on commit cbb0686

Please sign in to comment.