Skip to content

Commit ad9b9c5

Browse files
authored
Rollup merge of rust-lang#34558 - GlenDC:master, r=alexcrichton
rustbuild: propagate bootstrap.py '--help' flag Fixes rust-lang#34534. r? @alexcrichton
2 parents 5d36273 + 3f6c38c commit ad9b9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def main():
352352
parser.add_argument('--clean', action='store_true')
353353
parser.add_argument('-v', '--verbose', action='store_true')
354354

355-
args = [a for a in sys.argv if a != '-h']
355+
args = [a for a in sys.argv if a != '-h' and a != '--help']
356356
args, _ = parser.parse_known_args(args)
357357

358358
# Configure initial bootstrap

0 commit comments

Comments
 (0)