Remove generate golang file client/lcd/statik/statik.go

This commit is contained in:
HaoyangLiu 2018-09-13 21:33:04 +08:00
parent 5d5bdbb743
commit 69b9a53b53
3 changed files with 9 additions and 14 deletions

1
.gitignore vendored
View File

@ -16,6 +16,7 @@ docs/_build
examples/basecoin/app/data
baseapp/data/*
client/lcd/keys/*
client/lcd/statik/*
mytestnet
# Testing

File diff suppressed because one or more lines are too long

View File

@ -88,6 +88,12 @@ else
@echo "Installing dep"
go get -v $(DEP)
endif
ifdef STATIK_CHECK
@echo "Statik is already installed. Run 'make update_tools' to update."
else
@echo "Installing statik"
go get -v $(STATIK)
endif
get_dev_tools:
$(MAKE) get_tools
@ -139,8 +145,8 @@ else
@echo "Installing gocyclo"
go get -v $(GOCYCLO)
endif
ifndef STATIK_CHECK
@echo "No statik in path. Install with 'make get_tools'."
ifdef STATIK_CHECK
@echo "statik is already installed. Run 'make update_tools' to update."
else
@echo "Installing statik"
go get -v $(STATIK)