Skip to content

Commit

Permalink
Merge 155457c into 5cd5549
Browse files Browse the repository at this point in the history
  • Loading branch information
ebruck committed Mar 3, 2020
2 parents 5cd5549 + 155457c commit 586a0c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@

# Goland project files
.idea/
blzcli
blzd
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=BluzelleService \

BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'

all: install
all:
go build $(BUILD_FLAGS) ./cmd/blzd
go build $(BUILD_FLAGS) ./cmd/blzcli

install: go.sum
go install -mod=readonly $(BUILD_FLAGS) ./cmd/blzd
go install -mod=readonly $(BUILD_FLAGS) ./cmd/blzcli

clean:
@rm -f blzd blzcli

go.sum: go.mod
@echo "--> Ensure dependencies have not been modified"
GO111MODULE=on go mod verify
Expand Down

0 comments on commit 586a0c7

Please sign in to comment.