We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7014afc + f937567 commit 3401db0Copy full SHA for 3401db0
src/bootstrap/bootstrap.py
@@ -844,6 +844,11 @@ def bootstrap(help_triggered):
844
def main():
845
"""Entry point for the bootstrap process"""
846
start_time = time()
847
+
848
+ # x.py help <cmd> ...
849
+ if len(sys.argv) > 1 and sys.argv[1] == 'help':
850
+ sys.argv = sys.argv[:1] + [sys.argv[2], '-h'] + sys.argv[3:]
851
852
help_triggered = (
853
'-h' in sys.argv) or ('--help' in sys.argv) or (len(sys.argv) == 1)
854
try:
0 commit comments