]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
sfd2woff.ff: take the output file as another argument
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 8 Nov 2023 21:05:25 +0000 (16:05 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 8 Nov 2023 21:05:25 +0000 (16:05 -0500)
In out-of-source builds, we can't write the output to the same
directory as the input.

sfd2woff.ff

index a3585c642b545ab82bde57eccbe3719832cad3b7..8f6085560416745253469f7311a4029d72c6dd1b 100755 (executable)
@@ -1,8 +1,7 @@
 #!/usr/bin/env fontforge
 #
-# FontForge script to convert its argument (some font file) to
-# woff2. The base name of the file is kept the same and a .woff2
-# extension is added. See,
+# FontForge script that converts its first argument (a font file) to
+# woff2, saving the results to its second argument (a path). See,
 #
 #   https://fontforge.org/docs/tutorial/scripting-tutorial.html
 #
@@ -29,4 +28,4 @@
 #   819212
 #
 Open($1);
-Generate($1:r + ".woff2","",819212);
+Generate($2,"",819212);