We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbabc4c commit c3338c9Copy full SHA for c3338c9
Tests/runner.py
@@ -91,6 +91,13 @@ def _check_tool(tool_name):
91
"""
92
if platform.system() == 'Windows':
93
tool_name += '.exe'
94
+ # XXX start hack to bypass these issues
95
+ # https://github.com/adobe-type-tools/afdko/issues/347
96
+ # https://github.com/adobe-type-tools/afdko/issues/348
97
+ if tool_name.split('.')[0] in ('sfntdiff', 'sfntedit', 'makeotfexe',
98
+ 'type1', 'detype1'):
99
+ return tool_name
100
+ # XXX end hack
101
try:
102
subprocess.check_output([tool_name, '-h'])
103
return tool_name
0 commit comments