aboutsummaryrefslogtreecommitdiff
path: root/emscons
diff options
context:
space:
mode:
Diffstat (limited to 'emscons')
-rwxr-xr-xemscons6
1 files changed, 3 insertions, 3 deletions
diff --git a/emscons b/emscons
index 2666f18c..ed11a517 100755
--- a/emscons
+++ b/emscons
@@ -4,8 +4,9 @@
Wrapping the scons invocation, EMSCRIPTEN_TOOL_PATH is set in the process
environment, and can be used to locate the emscripten SCons Tool.
Example:
-# Load emscripten Tool
-my_env = Environment(tools=['emscripten'], toolpath=[os.environ['EMSCRIPTEN_TOOL_PATH']])
+
+ # Load emscripten Tool
+ my_env = Environment(tools=['emscripten'], toolpath=[os.environ['EMSCRIPTEN_TOOL_PATH']])
'''
import os, subprocess, sys
@@ -17,4 +18,3 @@ env = os.environ.copy()
env[ 'EMSCRIPTEN_TOOL_PATH' ] = tool_path
exit(subprocess.call(sys.argv[1:], env=env))
-