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 afbdd86 commit eeaf0d3Copy full SHA for eeaf0d3
CHANGELOG.md
@@ -2,7 +2,7 @@
2
3
## 1.0.1 under development
4
5
-- Bug #402: Always use only one goal in Makefile (@vjik)
+- Bug #402, #411: Always use only one goal in Makefile (@vjik)
6
- Bug #409, #410: Fix fake goals in Makefile (@vjik)
7
- Bug #403: Add DI container delegates configuration (@vjik)
8
- Enh #399: Improve message for missing or invalid APP_ENV (@samdark)
Makefile
@@ -1,9 +1,11 @@
1
-.DEFAULT_GOAL := help
-
CLI_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
$(eval $(sort $(subst :,\:,$(CLI_ARGS))):;@:)
+ifeq ($(MAKECMDGOALS),)
+PRIMARY_GOAL := help
+else
PRIMARY_GOAL := $(firstword $(MAKECMDGOALS))
+endif
9
10
include docker/.env
11
0 commit comments