Skip to content

Commit 2cc1517

Browse files
authored
Fix #424: make was not displaying help with version 4.4 and up
1 parent b6bffee commit 2cc1517

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 1.1.1 under development
44

5-
- no changes in this release.
5+
- Bug #424: `make` was not displaying help with version 4.4 and up (@samdark)
66

77
## 1.1.0 December 20, 2025
88

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
CLI_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
22
$(eval $(sort $(subst :,\:,$(CLI_ARGS))):;@:)
33

4-
ifeq ($(MAKECMDGOALS),)
5-
PRIMARY_GOAL := help
6-
else
74
PRIMARY_GOAL := $(firstword $(MAKECMDGOALS))
5+
ifeq ($(PRIMARY_GOAL),)
6+
PRIMARY_GOAL := help
87
endif
98

109
include docker/.env

0 commit comments

Comments
 (0)