5 lines
200 B
Makefile
5 lines
200 B
Makefile
##@ [Application: Symfony]
|
|
|
|
.PHONY: console
|
|
console: ## Run composer commands. Specify the command e.g. via ARGS="install"
|
|
$(EXECUTE_IN_APPLICATION_CONTAINER) php "/data/www/new/bin/console" $(ARGS);
|