Skip to content

Commit 92c0ab0

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 dfc7da4 + 3f6c38c commit 92c0ab0

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
@@ -359,7 +359,7 @@ def main():
359359
parser.add_argument('--clean', action='store_true')
360360
parser.add_argument('-v', '--verbose', action='store_true')
361361

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

365365
# Configure initial bootstrap

0 commit comments

Comments
 (0)