From 97b89357641f2bad86028e98c960a550ba1bcc3d Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Wed, 4 Mar 2020 09:42:59 +0300 Subject: [PATCH] update Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f45dc99..067945e 100644 --- a/Makefile +++ b/Makefile @@ -46,9 +46,9 @@ ifeq ($(COMPOSER_IN_TESTS),1) else @cd $(PRESTASHOP_DIR) && cp tests-legacy/parameters.yml.travis app/config/parameters.yml endif - @bash $(PRESTASHOP_DIR)/travis-scripts/install-prestashop.sh + @cd $(PRESTASHOP_DIR) && bash travis-scripts/install-prestashop.sh else - @bash $(PRESTASHOP_DIR)/travis-scripts/install-prestashop + @cd $(PRESTASHOP_DIR) && bash travis-scripts/install-prestashop endif test: @@ -56,5 +56,5 @@ ifeq ($(COMPOSER_IN_TESTS),1) @phpunit else @cd $(PRESTASHOP_DIR) && composer run-script create-test-db --timeout=0 - @php $(PRESTASHOP_DIR)/vendor/bin/phpunit -c $(ROOT_DIR)/phpunit.xml.dist + @cd $(PRESTASHOP_DIR) && php vendor/bin/phpunit -c $(ROOT_DIR)/phpunit.xml.dist endif