fixing Makefile build issue with @echo
This commit is contained in:
parent
be21d357cb
commit
27c5539178
5
Makefile
5
Makefile
|
@ -49,13 +49,12 @@ reset-db:
|
||||||
cd lemur && lemur db upgrade
|
cd lemur && lemur db upgrade
|
||||||
|
|
||||||
setup-git:
|
setup-git:
|
||||||
|
@echo "--> Installing git hooks"
|
||||||
if [ -d .git/hooks ]; then \
|
if [ -d .git/hooks ]; then \
|
||||||
@echo "--> Installing git hooks"; \
|
|
||||||
git config branch.autosetuprebase always; \
|
git config branch.autosetuprebase always; \
|
||||||
cd .git/hooks && ln -sf ../../hooks/* ./; \
|
cd .git/hooks && ln -sf ../../hooks/* ./; \
|
||||||
@echo ""; \
|
|
||||||
fi
|
fi
|
||||||
|
@echo ""
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "--> Cleaning static cache"
|
@echo "--> Cleaning static cache"
|
||||||
|
|
Loading…
Reference in New Issue