From 44fab8e001f5b5789e694f6dc1fcdbc11d9b057f Mon Sep 17 00:00:00 2001 From: xonix Date: Wed, 3 Jan 2024 18:39:33 +0200 Subject: [PATCH] Support interpolation including parameterized goal params #153 README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 107dcd1..0efd9f0 100644 --- a/README.md +++ b/README.md @@ -406,8 +406,6 @@ Note, you can reference the `@define`-ed variables in the arguments of the param @depends_on parameterized_goal @args "$HELLO world" # interpolated inside string ``` -You can also rely on parameterized goals [parameters interpolation](https://github.com/xonixx/makesure/issues/153). - Having the above in `Makesurefile` will produce next output when ran with `./makesure goal1`: ``` goal 'parameterized_goal@hello' ... @@ -417,6 +415,8 @@ ARG=hello world goal 'goal1' [empty]. ``` +You can also rely on parameterized goals [parameters interpolation](https://github.com/xonixx/makesure/issues/153). + Please find a more real-world example [here](https://github.com/xonixx/fhtagn/blob/e7161f92731c13b5afbc09c7d738c1ff4882906f/Makesurefile#L70). For more technical consideration regarding this feature see [parameterized_goals.md](docs/parameterized_goals.md).