We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d40ef commit 438da55Copy full SHA for 438da55
src/generators/Manual.hx
@@ -134,8 +134,11 @@ class Manual {
134
for (image in FileSystem.readDirectory(Config.manualImageDir)) {
135
var inPath = Path.join([Config.manualImageDir, image]);
136
var outPath = Path.join([Config.outputFolder, "manual", image]);
137
-
138
- cmd("inkscape", [inPath, '--export-png=$outPath.png']);
+ try {
+ cmd("inkscape", [inPath, '--export-png=$outPath.png']);
139
+ }catch(_) {
140
+ continue;
141
+ }
142
143
// Path the svg figure to include the link to the font css
144
var xml = Xml.parse(File.getContent(inPath));
0 commit comments