Closed juandelperal closed 8 months ago
At least here I get this (added echo to testing purposes)
(venv) ➜ Project git:(main) (for config in sources/config.yaml; do . venv/bin/activate; echo gftools builder $$config; done) gftools builder 2115config gftools builder 2115config (venv) ➜ Project git:(main) ✗ (for config in sources/config.yaml; do . venv/bin/activate; echo gftools builder $config; done) gftools builder sources/config-subrayada.yaml gftools builder sources/config.yaml
My bad, it worked properly as it was :)
Yeah, this was being defined inside a Makefile, where $ means something else and needs to be escaped. :-)
Makefile
$
At least here I get this (added echo to testing purposes)
(venv) ➜ Project git:(main) (for config in sources/config.yaml; do . venv/bin/activate; echo gftools builder $$config; done) gftools builder 2115config gftools builder 2115config (venv) ➜ Project git:(main) ✗ (for config in sources/config.yaml; do . venv/bin/activate; echo gftools builder $config; done) gftools builder sources/config-subrayada.yaml gftools builder sources/config.yaml