Skip to content

Commit

Permalink
Update buildcff2vf.py
Browse files Browse the repository at this point in the history
- non-zero return when input set requires compatibilization
- bump __version__ to 2.0.3
  • Loading branch information
josh-hadley committed Jul 1, 2023
1 parent 2e504e5 commit 985b8dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/afdko/buildcff2vf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

from afdko.fdkutils import validate_path

__version__ = '2.0.2'
__version__ = '2.0.3'

STAT_FILENAME = 'override.STAT.ttx'

Expand Down Expand Up @@ -572,7 +572,7 @@ def main(args=None):
except VarLibCFFPointTypeMergeError:
logger.error("The input set requires compatibilization. Please try "
"again with the -c (--check-compat) option.")
return 0
return 1

if not options.keep_glyph_names:
suppress_glyph_names(varFont)
Expand Down

0 comments on commit 985b8dd

Please sign in to comment.