From 93cc4c3eaa1d8b9935634773eb28cdf017d9a778 Mon Sep 17 00:00:00 2001 From: David Todd Date: Mon, 27 May 2019 16:14:17 -0500 Subject: [PATCH] update echo statements in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 003a137..bd239d4 100644 --- a/Makefile +++ b/Makefile @@ -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