We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebc5d0 commit 1b14e72Copy full SHA for 1b14e72
Makefile
@@ -38,10 +38,10 @@ code-find-smells md: ## Run static analysis tool to find code smells using mess
38
@docker compose exec ${PHP_CONTAINER_NAME} ./vendor/bin/phpmd src,tests text phpmd.xml --suffixes php
39
40
composer-update: ## Run composer update
41
- @docker run --rm --interactive --tty --volume $PWD:/app composer update
+ @docker run --rm --interactive --tty --volume $$PWD:/app composer update
42
43
composer-install: ## Run composer update
44
- @docker run --rm --interactive --tty --volume $PWD:/app composer install
+ @docker run --rm --interactive --tty --volume $$PWD:/app composer install
45
46
console c: ## Run the container bash console
47
docker exec -it php /bin/bash
0 commit comments