diff options
author | Haneef Mubarak <haneefmubarak@users.noreply.github.com> | 2014-02-22 22:03:26 -0800 |
---|---|---|
committer | Haneef Mubarak <haneefmubarak@users.noreply.github.com> | 2014-02-22 22:03:26 -0800 |
commit | d09166ab48c96393edd06f89a2f928073d18586d (patch) | |
tree | a6420a15c71a69619ddf68b69ad3a9920b0aa3ca /emscons | |
parent | b0bc4b4525f850563dda14b3412795bb82441c8a (diff) |
**all: hard tabs, trailing newlines**
Diffstat (limited to 'emscons')
-rwxr-xr-x | emscons | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)) - |