Fix shell=True

This commit is contained in:
Eric Holscher 2015-08-14 14:57:15 -07:00
parent dfbae94963
commit b66a83b550

View File

@ -39,7 +39,7 @@ class DotNetSphinxMapper(SphinxMapperBase):
command = ['docfx', 'metadata', '--raw', '--force']
command.extend(all_files)
proc = subprocess.Popen(
command,
command.join(' '),
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,