Skip to content
Snippets Groups Projects
Commit 5148694b authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #2396 from nicolasnoble/win32-is-an-os-too

Calling python to spawn a python subprocess.
parents 98049242 5876ad17
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ for root, dirs, files in os.walk('templates'):
out = out_dir + '/' + os.path.splitext(f)[0]
if not os.path.exists(out_dir):
os.makedirs(out_dir)
cmd = ['tools/buildgen/mako_renderer.py']
cmd = ['python', 'tools/buildgen/mako_renderer.py']
for plugin in plugins:
cmd.append('-p')
cmd.append(plugin)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment