summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@riseup.net>2017-01-09 18:00:43 -0200
committerBruno Wagner <bwagner@riseup.net>2017-01-09 18:00:43 -0200
commitbe1f95f20083e64955bb041f94d96bb46b8112b1 (patch)
tree35cab776e3b6acabec77ddfaf9f67efc9a02fdec /Makefile
parent62975b2391180b065f4a0f1537f8fbf191223b89 (diff)
Added error message in case virtualenv doesn't exist
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c00dd461..e903ab34 100644
--- a/Makefile
+++ b/Makefile
@@ -119,6 +119,7 @@ ensure_phantomjs_installed:
.PHONY: ensure_virtualenv_installed
ensure_virtualenv_installed:
@if [ ! `which virtualenv` ]; then\
+ echo "Virtualenv must be installed";\
exit 1;\
else\
echo "Virtualenv located at "`which virtualenv`;\