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.
make
1 parent b6bffee commit 2cc1517Copy full SHA for 2cc1517
CHANGELOG.md
@@ -2,7 +2,7 @@
2
3
## 1.1.1 under development
4
5
-- no changes in this release.
+- Bug #424: `make` was not displaying help with version 4.4 and up (@samdark)
6
7
## 1.1.0 December 20, 2025
8
Makefile
@@ -1,10 +1,9 @@
1
CLI_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
$(eval $(sort $(subst :,\:,$(CLI_ARGS))):;@:)
-ifeq ($(MAKECMDGOALS),)
-PRIMARY_GOAL := help
-else
PRIMARY_GOAL := $(firstword $(MAKECMDGOALS))
+ifeq ($(PRIMARY_GOAL),)
+ PRIMARY_GOAL := help
endif
9
10
include docker/.env
0 commit comments