Skip to content

Commit d379000

Browse files
committed
tidy bless
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent d28a1a8 commit d379000

File tree

4 files changed

+60
-15
lines changed

4 files changed

+60
-15
lines changed

src/etc/completions/x.py.fish

+15
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ complete -c x.py -n "__fish_use_subcommand" -s i -l incremental -d 'use incremen
2626
complete -c x.py -n "__fish_use_subcommand" -l include-default-paths -d 'include default paths in addition to the provided ones'
2727
complete -c x.py -n "__fish_use_subcommand" -l dry-run -d 'dry run; don\'t build anything'
2828
complete -c x.py -n "__fish_use_subcommand" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
29+
complete -c x.py -n "__fish_use_subcommand" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
2930
complete -c x.py -n "__fish_use_subcommand" -l json-output -d 'use message-format=json'
3031
complete -c x.py -n "__fish_use_subcommand" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
3132
complete -c x.py -n "__fish_use_subcommand" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -74,6 +75,7 @@ complete -c x.py -n "__fish_seen_subcommand_from build" -s i -l incremental -d '
7475
complete -c x.py -n "__fish_seen_subcommand_from build" -l include-default-paths -d 'include default paths in addition to the provided ones'
7576
complete -c x.py -n "__fish_seen_subcommand_from build" -l dry-run -d 'dry run; don\'t build anything'
7677
complete -c x.py -n "__fish_seen_subcommand_from build" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
78+
complete -c x.py -n "__fish_seen_subcommand_from build" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
7779
complete -c x.py -n "__fish_seen_subcommand_from build" -l json-output -d 'use message-format=json'
7880
complete -c x.py -n "__fish_seen_subcommand_from build" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
7981
complete -c x.py -n "__fish_seen_subcommand_from build" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -109,6 +111,7 @@ complete -c x.py -n "__fish_seen_subcommand_from check" -s i -l incremental -d '
109111
complete -c x.py -n "__fish_seen_subcommand_from check" -l include-default-paths -d 'include default paths in addition to the provided ones'
110112
complete -c x.py -n "__fish_seen_subcommand_from check" -l dry-run -d 'dry run; don\'t build anything'
111113
complete -c x.py -n "__fish_seen_subcommand_from check" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
114+
complete -c x.py -n "__fish_seen_subcommand_from check" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
112115
complete -c x.py -n "__fish_seen_subcommand_from check" -l json-output -d 'use message-format=json'
113116
complete -c x.py -n "__fish_seen_subcommand_from check" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
114117
complete -c x.py -n "__fish_seen_subcommand_from check" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -150,6 +153,7 @@ complete -c x.py -n "__fish_seen_subcommand_from clippy" -s i -l incremental -d
150153
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l include-default-paths -d 'include default paths in addition to the provided ones'
151154
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l dry-run -d 'dry run; don\'t build anything'
152155
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
156+
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
153157
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l json-output -d 'use message-format=json'
154158
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
155159
complete -c x.py -n "__fish_seen_subcommand_from clippy" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -184,6 +188,7 @@ complete -c x.py -n "__fish_seen_subcommand_from fix" -s i -l incremental -d 'us
184188
complete -c x.py -n "__fish_seen_subcommand_from fix" -l include-default-paths -d 'include default paths in addition to the provided ones'
185189
complete -c x.py -n "__fish_seen_subcommand_from fix" -l dry-run -d 'dry run; don\'t build anything'
186190
complete -c x.py -n "__fish_seen_subcommand_from fix" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
191+
complete -c x.py -n "__fish_seen_subcommand_from fix" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
187192
complete -c x.py -n "__fish_seen_subcommand_from fix" -l json-output -d 'use message-format=json'
188193
complete -c x.py -n "__fish_seen_subcommand_from fix" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
189194
complete -c x.py -n "__fish_seen_subcommand_from fix" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -219,6 +224,7 @@ complete -c x.py -n "__fish_seen_subcommand_from fmt" -s i -l incremental -d 'us
219224
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l include-default-paths -d 'include default paths in addition to the provided ones'
220225
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l dry-run -d 'dry run; don\'t build anything'
221226
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
227+
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
222228
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l json-output -d 'use message-format=json'
223229
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
224230
complete -c x.py -n "__fish_seen_subcommand_from fmt" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -255,6 +261,7 @@ complete -c x.py -n "__fish_seen_subcommand_from doc" -s i -l incremental -d 'us
255261
complete -c x.py -n "__fish_seen_subcommand_from doc" -l include-default-paths -d 'include default paths in addition to the provided ones'
256262
complete -c x.py -n "__fish_seen_subcommand_from doc" -l dry-run -d 'dry run; don\'t build anything'
257263
complete -c x.py -n "__fish_seen_subcommand_from doc" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
264+
complete -c x.py -n "__fish_seen_subcommand_from doc" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
258265
complete -c x.py -n "__fish_seen_subcommand_from doc" -l json-output -d 'use message-format=json'
259266
complete -c x.py -n "__fish_seen_subcommand_from doc" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
260267
complete -c x.py -n "__fish_seen_subcommand_from doc" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -302,6 +309,7 @@ complete -c x.py -n "__fish_seen_subcommand_from test" -s i -l incremental -d 'u
302309
complete -c x.py -n "__fish_seen_subcommand_from test" -l include-default-paths -d 'include default paths in addition to the provided ones'
303310
complete -c x.py -n "__fish_seen_subcommand_from test" -l dry-run -d 'dry run; don\'t build anything'
304311
complete -c x.py -n "__fish_seen_subcommand_from test" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
312+
complete -c x.py -n "__fish_seen_subcommand_from test" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
305313
complete -c x.py -n "__fish_seen_subcommand_from test" -l json-output -d 'use message-format=json'
306314
complete -c x.py -n "__fish_seen_subcommand_from test" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
307315
complete -c x.py -n "__fish_seen_subcommand_from test" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -337,6 +345,7 @@ complete -c x.py -n "__fish_seen_subcommand_from bench" -s i -l incremental -d '
337345
complete -c x.py -n "__fish_seen_subcommand_from bench" -l include-default-paths -d 'include default paths in addition to the provided ones'
338346
complete -c x.py -n "__fish_seen_subcommand_from bench" -l dry-run -d 'dry run; don\'t build anything'
339347
complete -c x.py -n "__fish_seen_subcommand_from bench" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
348+
complete -c x.py -n "__fish_seen_subcommand_from bench" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
340349
complete -c x.py -n "__fish_seen_subcommand_from bench" -l json-output -d 'use message-format=json'
341350
complete -c x.py -n "__fish_seen_subcommand_from bench" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
342351
complete -c x.py -n "__fish_seen_subcommand_from bench" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -372,6 +381,7 @@ complete -c x.py -n "__fish_seen_subcommand_from clean" -s i -l incremental -d '
372381
complete -c x.py -n "__fish_seen_subcommand_from clean" -l include-default-paths -d 'include default paths in addition to the provided ones'
373382
complete -c x.py -n "__fish_seen_subcommand_from clean" -l dry-run -d 'dry run; don\'t build anything'
374383
complete -c x.py -n "__fish_seen_subcommand_from clean" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
384+
complete -c x.py -n "__fish_seen_subcommand_from clean" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
375385
complete -c x.py -n "__fish_seen_subcommand_from clean" -l json-output -d 'use message-format=json'
376386
complete -c x.py -n "__fish_seen_subcommand_from clean" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
377387
complete -c x.py -n "__fish_seen_subcommand_from clean" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -406,6 +416,7 @@ complete -c x.py -n "__fish_seen_subcommand_from dist" -s i -l incremental -d 'u
406416
complete -c x.py -n "__fish_seen_subcommand_from dist" -l include-default-paths -d 'include default paths in addition to the provided ones'
407417
complete -c x.py -n "__fish_seen_subcommand_from dist" -l dry-run -d 'dry run; don\'t build anything'
408418
complete -c x.py -n "__fish_seen_subcommand_from dist" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
419+
complete -c x.py -n "__fish_seen_subcommand_from dist" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
409420
complete -c x.py -n "__fish_seen_subcommand_from dist" -l json-output -d 'use message-format=json'
410421
complete -c x.py -n "__fish_seen_subcommand_from dist" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
411422
complete -c x.py -n "__fish_seen_subcommand_from dist" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -440,6 +451,7 @@ complete -c x.py -n "__fish_seen_subcommand_from install" -s i -l incremental -d
440451
complete -c x.py -n "__fish_seen_subcommand_from install" -l include-default-paths -d 'include default paths in addition to the provided ones'
441452
complete -c x.py -n "__fish_seen_subcommand_from install" -l dry-run -d 'dry run; don\'t build anything'
442453
complete -c x.py -n "__fish_seen_subcommand_from install" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
454+
complete -c x.py -n "__fish_seen_subcommand_from install" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
443455
complete -c x.py -n "__fish_seen_subcommand_from install" -l json-output -d 'use message-format=json'
444456
complete -c x.py -n "__fish_seen_subcommand_from install" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
445457
complete -c x.py -n "__fish_seen_subcommand_from install" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -475,6 +487,7 @@ complete -c x.py -n "__fish_seen_subcommand_from run" -s i -l incremental -d 'us
475487
complete -c x.py -n "__fish_seen_subcommand_from run" -l include-default-paths -d 'include default paths in addition to the provided ones'
476488
complete -c x.py -n "__fish_seen_subcommand_from run" -l dry-run -d 'dry run; don\'t build anything'
477489
complete -c x.py -n "__fish_seen_subcommand_from run" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
490+
complete -c x.py -n "__fish_seen_subcommand_from run" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
478491
complete -c x.py -n "__fish_seen_subcommand_from run" -l json-output -d 'use message-format=json'
479492
complete -c x.py -n "__fish_seen_subcommand_from run" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
480493
complete -c x.py -n "__fish_seen_subcommand_from run" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -509,6 +522,7 @@ complete -c x.py -n "__fish_seen_subcommand_from setup" -s i -l incremental -d '
509522
complete -c x.py -n "__fish_seen_subcommand_from setup" -l include-default-paths -d 'include default paths in addition to the provided ones'
510523
complete -c x.py -n "__fish_seen_subcommand_from setup" -l dry-run -d 'dry run; don\'t build anything'
511524
complete -c x.py -n "__fish_seen_subcommand_from setup" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
525+
complete -c x.py -n "__fish_seen_subcommand_from setup" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
512526
complete -c x.py -n "__fish_seen_subcommand_from setup" -l json-output -d 'use message-format=json'
513527
complete -c x.py -n "__fish_seen_subcommand_from setup" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
514528
complete -c x.py -n "__fish_seen_subcommand_from setup" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'
@@ -544,6 +558,7 @@ complete -c x.py -n "__fish_seen_subcommand_from suggest" -s i -l incremental -d
544558
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l include-default-paths -d 'include default paths in addition to the provided ones'
545559
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l dry-run -d 'dry run; don\'t build anything'
546560
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l dump-bootstrap-shims -d 'Indicates whether to dump the work done from bootstrap shims'
561+
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l build-std-on-stage0 -d 'Useful for library testing with the beta compiler (without building the stage 1 compiler)'
547562
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l json-output -d 'use message-format=json'
548563
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l bypass-bootstrap-lock -d 'Bootstrap uses this value to decide whether it should bypass locking the build process. This is rarely needed (e.g., compiling the std library for different targets in parallel)'
549564
complete -c x.py -n "__fish_seen_subcommand_from suggest" -l llvm-profile-generate -d 'generate PGO profile with llvm built for rustc'

0 commit comments

Comments
 (0)