update echo statements in makefile

This commit is contained in:
David Todd 2019-05-27 16:14:17 -05:00
parent 24520cfcad
commit 93cc4c3eaa
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ help:
@echo ' '
install:
@echo 'noop'
@echo 'Installing pelican dependancies'
@virtualenv venv
@source venv/bin/activate
@pip install -r requirements.txt
@ -23,7 +23,7 @@ uninstall:
@echo 'noop'
update:
@echo 'noop'
@echo 'Updating your pelican install'
@git submodule update --recursive --remote
@source venv/bin/activate
@pip install -r requirements.txt