diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-05-06 19:01:37 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-05-06 19:01:37 (GMT) |
commit | 783dff487bbe940ace7349fa46d6e32b4d0a4705 (patch) | |
tree | 3a31d995290257836d26af19b9ec378d3a3ac398 /SCons/__main__.py | |
parent | 37f745c6bc5a818f1a2fd423ac5e483bb2f6370f (diff) | |
download | SCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.zip SCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.tar.gz SCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.tar.bz2 |
Reorganize the repo. Moved src/engine/SCons to ./SCons to be more in line with current python packaging practices
Diffstat (limited to 'SCons/__main__.py')
-rw-r--r-- | SCons/__main__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SCons/__main__.py b/SCons/__main__.py new file mode 100644 index 0000000..0dfbb9d --- /dev/null +++ b/SCons/__main__.py @@ -0,0 +1,4 @@ +import SCons.Script +# this does all the work, and calls sys.exit +# with the proper exit status when done. +SCons.Script.main() |