Skip to content

Commit bcb83b9

Browse files
committed
fix doxybuild.py for Windows
issue open-source-parsers#287 (tylerknott@)
1 parent 3f05b1a commit bcb83b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doxybuild.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def run_cmd(cmd, silent=False):
7272
if silent:
7373
status, output = getstatusoutput(cmd)
7474
else:
75-
status, output = os.system(' '.join(cmd)), ''
75+
status, output = subprocess.call(cmd), ''
7676
if status:
7777
msg = 'Error while %s ...\n\terror=%d, output="""%s"""' %(info, status, output)
7878
raise Exception(msg)

0 commit comments

Comments
 (0)