From 426cf0e1f1ded7bf94112685c3c95af7da72119e Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 11 Sep 2018 13:41:43 +0200 Subject: [PATCH] Fix typo in Makefile --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index bccd434..2c7a213 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ NPM ?= npm GIT ?= git MKDIR ?= mkdir PHP ?= php +RM ?= rm all: update clean-cache @@ -11,39 +12,39 @@ composer: @echo "---------------------------" @echo - $(COMPOSER) install + ${COMPOSER} install npm: @echo "Installing CSS/JS dependencies" @echo "------------------------------" @echo - $(NPM) install + ${NPM} install update: @echo "Updating application's dependencies" @echo "-----------------------------------" @echo - $(GIT) pull origin master + ${GIT} pull origin master ${MKDIR} -p data/git ${MKDIR} -p data/cache - $(COMPOSER) update - $(NPM) install + ${COMPOSER} update + ${NPM} install clean-cache: @echo "Removing cache" @echo "--------------" @echo - rm -fr cache/* + ${RM} -fr cache/* run: @echo "Run development server" @echo "----------------------" @echo - $(PHP) -S 127.0.0.1:8080 -t web + ${PHP} -S 127.0.0.1:8080 -t web propel: @echo "Propel migration"