diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-07-06 19:13:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-06 19:13:06 -0400 |
| commit | 92c0ab01b14adbb8271504b647879474c2beb436 (patch) | |
| tree | 51fcb8cc4197d522c7764332a626fb3ffde75dfb /src/bootstrap/bootstrap.py | |
| parent | dfc7da4dc4f43df9ce2109e9e34cc1b8cfff4e49 (diff) | |
| parent | 3f6c38c5e00b5c5241498d63897a16223018da3b (diff) | |
| download | rust-92c0ab01b14adbb8271504b647879474c2beb436.tar.gz rust-92c0ab01b14adbb8271504b647879474c2beb436.zip | |
Rollup merge of #34558 - GlenDC:master, r=alexcrichton
rustbuild: propagate bootstrap.py '--help' flag Fixes #34534. r? @alexcrichton
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 832911beb58..17a7c9ca66a 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -359,7 +359,7 @@ def main(): parser.add_argument('--clean', action='store_true') parser.add_argument('-v', '--verbose', action='store_true') - args = [a for a in sys.argv if a != '-h'] + args = [a for a in sys.argv if a != '-h' and a != '--help'] args, _ = parser.parse_known_args(args) # Configure initial bootstrap |
