Skip to content

Commit a48ce7e

Browse files
authored
Merge pull request #2405 from Pinata-Consulting/make-issue-tweak
makefile: variables in make issue are now sorted
2 parents 005a71c + 9f4caeb commit a48ce7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/utils.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ $(foreach V, $(.VARIABLES),$(if $(filter-out $(1), $(origin $V)), $(if $(filter-
9090
endef
9191

9292
export UNSET_VARIABLES_NAMES := $(call get_variables,command% line environment% default automatic)
93-
export ISSUE_VARIABLES_NAMES := $(call get_variables,environment% default automatic)
93+
export ISSUE_VARIABLES_NAMES := $(sort $(filter-out \n get_variables, $(call get_variables,environment% default automatic)))
9494
export ISSUE_VARIABLES := $(foreach V, $(ISSUE_VARIABLES_NAMES), $(if $($V),$V=$($V),$V='')${\n})
9595
export COMMAND_LINE_ARGS := $(foreach V,$(.VARIABLES),$(if $(filter command% line, $(origin $V)),$(V)))
9696

0 commit comments

Comments
 (0)