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 examples/basecoin/app/data
baseapp/data/* baseapp/data/*
client/lcd/keys/* client/lcd/keys/*
client/lcd/statik/*
mytestnet mytestnet
# Testing # Testing

File diff suppressed because one or more lines are too long

View File

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