fonttools/fonttools
Behdad Esfahbod 25e9d826ba ./fonttools: Use realpath() instead of abspath()
Makes a symlink to this script do the right thing.
2017-04-20 13:39:15 -07:00

13 lines
298 B
Python
Executable File

#!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import sys
import os.path
libdir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'Lib')
sys.path.insert(0, libdir)
from fontTools.__main__ import main
if __name__ == '__main__':
sys.exit(main())