From a19e992a5b0ec30dbf3a6d25d0d54a9a2f02c125 Mon Sep 17 00:00:00 2001 From: Benjamin Thurm Date: Wed, 26 Feb 2014 09:53:56 +0100 Subject: [PATCH] Run files via shell commands for Win compatibility --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index b98393c2af..b7880e4735 100755 --- a/build.py +++ b/build.py @@ -306,7 +306,7 @@ def build_examples_all_combined_js(t): @target('build/examples/all.js', EXAMPLES_SRC) def build_examples_all_js(t): - t.output('bin/combine-examples.py', t.dependencies) + t.output('%(PYTHON)s', 'bin/combine-examples.py', t.dependencies) @rule(r'\Abuild/examples/(?P.*).json\Z')