-
Makefiles allow to define a function define show
tput setaf 3; echo $(1); tput setaf 8
endef
stop:
@for i in ${SERVICES}; do $(call show, stop $$i); docker stop $$i; done which I can then call. is this possible in just ? |
Beta Was this translation helpful? Give feedback.
Answered by
casey
May 28, 2022
Replies: 1 comment 1 reply
-
There was a PR starting to implement custom functions, but it looks like it's stalled. So not possible at the moment, unfortunately. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
danielb2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There was a PR starting to implement custom functions, but it looks like it's stalled. So not possible at the moment, unfortunately.