From 7e3d72fa283dfc56a8814001a474aced3e8d1f80 Mon Sep 17 00:00:00 2001 From: max Date: Tue, 16 Jul 2024 14:11:20 +0200 Subject: [PATCH] fix: Make sure that the filepath shell arguments are enclosed in quotes --- Lib/gftools/builder/operations/autohintOTF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/gftools/builder/operations/autohintOTF.py b/Lib/gftools/builder/operations/autohintOTF.py index 07cfd094..89f02851 100644 --- a/Lib/gftools/builder/operations/autohintOTF.py +++ b/Lib/gftools/builder/operations/autohintOTF.py @@ -3,4 +3,4 @@ class AutohintOTF(OperationBase): description = "Run otfautohint" - rule = "otfautohint $args -o $out $in \\|\\| otfautohint $args -o $out $in --no-zones-stems" + rule = "otfautohint $args -o \"$out\" \"$in\" \\|\\| otfautohint $args -o \"$out\" \"$in\" --no-zones-stems"