diff options
author | sivachandra@chromium.org <sivachandra@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-23 23:08:09 +0000 |
---|---|---|
committer | sivachandra@chromium.org <sivachandra@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-23 23:08:09 +0000 |
commit | 2b0ee8e2d12c3a4b1b2e72920ab954c59c00b2d6 (patch) | |
tree | 4b9ae998ae1efcaae6491f062bc85be712ac569b /build | |
parent | 2405ffde256835f5a85be71b1fe71a3d14ce3929 (diff) | |
download | chromium_src-2b0ee8e2d12c3a4b1b2e72920ab954c59c00b2d6.zip chromium_src-2b0ee8e2d12c3a4b1b2e72920ab954c59c00b2d6.tar.gz chromium_src-2b0ee8e2d12c3a4b1b2e72920ab954c59c00b2d6.tar.bz2 |
Treat options to the envsetup script as args.
NOTRY=True
Review URL: https://chromiumcodereview.appspot.com/24350010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/env_dump.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/env_dump.py b/build/env_dump.py index c896366..21edfe6 100755 --- a/build/env_dump.py +++ b/build/env_dump.py @@ -22,6 +22,7 @@ def main(): '-d', '--dump-mode', action='store_true', help='Dump the environment to sys.stdout and exit immediately.') + parser.disable_interspersed_args() options, args = parser.parse_args() if options.dump_mode: if args or options.output_json: |