Skip to content

Commit

Permalink
disable Shell in subprocess call
Browse files Browse the repository at this point in the history
  • Loading branch information
L2jLiga committed Aug 20, 2021
1 parent 719a5ab commit 0fbd5ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/engines/fontforge/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def generate(filename):
# Hint the TTF file
# ttfautohint is optional
if args['autoHint'] and find_executable('ttfautohint'):
call('ttfautohint --symbol --fallback-script=latn --no-info "%(font)s.ttf" "%(font)s-hinted.ttf" && mv "%(font)s-hinted.ttf" "%(font)s.ttf"' % {'font': fontfile}, shell=True)
call('ttfautohint --symbol --fallback-script=latn --no-info "%(font)s.ttf" "%(font)s-hinted.ttf" && mv "%(font)s-hinted.ttf" "%(font)s.ttf"' % {'font': fontfile}, shell=False)
f = fontforge.open(fontfile + '.ttf')

# SVG
Expand Down Expand Up @@ -132,7 +132,7 @@ def generate(filename):
# EOT
if 'eot' in args['types']:
# eotlitetool.py script to generate IE7-compatible .eot fonts
call('python "%(path)s/../../bin/eotlitetool.py" "%(font)s.ttf" --output "%(font)s.eot"' % {'path': scriptPath, 'font': fontfile}, shell=True)
call('python "%(path)s/../../bin/eotlitetool.py" "%(font)s.ttf" --output "%(font)s.eot"' % {'path': scriptPath, 'font': fontfile}, shell=False)

# Delete TTF if not needed
if ('ttf' not in args['types']) and woff2_generated:
Expand Down

0 comments on commit 0fbd5ee

Please sign in to comment.