googlefonts / googlefonts-project-template

(DEMO) Repository architecture example for a typeface design project
SIL Open Font License 1.1
131 stars 27 forks source link

rm extra $ in for loop #145

Closed juandelperal closed 8 months ago

juandelperal commented 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

juandelperal commented 8 months ago

My bad, it worked properly as it was :)

simoncozens commented 8 months ago

Yeah, this was being defined inside a Makefile, where $ means something else and needs to be escaped. :-)