Skip to content

Commit

Permalink
Make fvarInstanceAxisDflts parameter work, see #1069 (#1070)
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens authored Nov 29, 2024
1 parent f0b9df0 commit 41a8cf2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Lib/gftools/builder/recipeproviders/googlefonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,12 @@ def fix_args(self):
if self.config.get("fvarInstanceAxisDflts"):
args += (
" --fvar-instance-axis-dflts '"
+ self.config["fvarInstanceAxisDflts"]
+ " ".join(
[
f"{k}={v}"
for k, v in self.config["fvarInstanceAxisDflts"].items()
]
)
+ "'"
)
return args
Expand Down

0 comments on commit 41a8cf2

Please sign in to comment.