Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jun 24, 2020
1 parent bb6e087 commit f0eb780
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ RUN apk add libusb-dev linux-headers
WORKDIR /code
COPY . /code

# try this one out
RUN BUILD_TAGS=muslc make view

RUN false

# download all deps
RUN go mod download
# TODO: how to use this instead of hardcoding GO_COSMWASM
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ endif
build_tags += $(BUILD_TAGS)
build_tags := $(strip $(build_tags))

empty:=
space:= $(empty) $(empty)
empty :=
space := $(empty) $(empty)
comma := ,
build_tags_comma_sep := $(subst $(space),$(comma),$(build_tags))

Expand All @@ -60,7 +60,7 @@ endif
ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))

BUILD_FLAGS := -tags "$(build_tags_comma_sep)" -ldflags '$(ldflags)' -trimpath
BUILD_FLAGS := -tags $(build_tags_comma_sep) -ldflags '$(ldflags)' -trimpath

# The below include contains the tools target.
include contrib/devtools/Makefile
Expand Down

0 comments on commit f0eb780

Please sign in to comment.