1
0
Fork 0
mirror of synced 2025-04-04 13:43:32 +03:00

Update build magento, bugfixes

This commit is contained in:
Akolzin Dmitry 2020-04-06 16:53:37 +03:00 committed by gorokh
parent 95e765d01e
commit 172c330e08
2 changed files with 3 additions and 3 deletions

View file

@ -15,8 +15,8 @@ delete_archive:
rm -f $(ARCHIVE_NAME)
ci:
ifeq ($(USE_COMPOSER,1))
ifeq ($(USE_COMPOSER),1)
php $(MAGE_ROOT)/vendor/phpunit/phpunit/phpunit -c $(MAGE_ROOT)/dev/tests/unit/phpunit.xml.dist $(MAGE_ROOT)/app/code/Retailcrm/Retailcrm/Test/Unit
else
phpunit -c $(MAGE_ROOT)/dev/tests/unit/phpunit.xml.dist $(MAGE_ROOT)/app/code/Retailcrm/Retailcrm/Test/Unit
endif
endif

View file

@ -15,7 +15,7 @@ magento_clone() {
git clone https://github.com/magento/magento2
cd magento2
git checkout $BRANCH
composer install
composer update
composer require retailcrm/api-client-php
}