Skip to content

Commit

Permalink
Merge pull request #124 from yapplabs/fix-hinting
Browse files Browse the repository at this point in the history
Fix autohinting.
  • Loading branch information
endtwist committed Oct 5, 2013
2 parents 4bc69c5 + 15f88e3 commit 36ffb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fontcustom/scripts/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
subprocess.call('mv ' + fontfile + '.eotlite ' + fontfile + '.eot', shell=True)

# Hint the TTF file
subprocess.call('ttfautohint -s -n ' + fontfile + '.ttf ' + fontfile + '-hinted.ttf > /dev/null 2>&1 && mv ' + fontfile + '-hinted.ttf ' + fontfile + '.ttf', shell=True)
subprocess.call('ttfautohint -s -f -n ' + fontfile + '.ttf ' + fontfile + '-hinted.ttf > /dev/null 2>&1 && mv ' + fontfile + '-hinted.ttf ' + fontfile + '.ttf', shell=True)

# Describe output in JSON
outname = os.path.basename(fontfile)
Expand Down

0 comments on commit 36ffb6b

Please # to comment.