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