Skip to content

Commit

Permalink
fix make install target
Browse files Browse the repository at this point in the history
composer.lock and yarn.lock are not in git so make can not require them

fixes #207
  • Loading branch information
cebe committed Nov 14, 2024
1 parent 2db31bf commit f47247a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fix-style: php-cs-fixer.phar
$(DOCKER_PHP) vendor/bin/indent --spaces .php_cs.dist
$(DOCKER_PHP) ./php-cs-fixer.phar fix src/ --diff

install: composer.lock yarn.lock
install:
$(DOCKER_PHP) composer install --prefer-dist --no-interaction --no-progress --ansi
$(DOCKER_NODE) yarn install

Expand Down

0 comments on commit f47247a

Please sign in to comment.