Skip to content

Commit

Permalink
Merge pull request #434 from axodotdev/hide_generate_ci
Browse files Browse the repository at this point in the history
chore(cli): hide generate-ci command
  • Loading branch information
Gankra authored Sep 18, 2023
2 parents 6bbdef4 + 44789e3 commit 095cfcf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 36 deletions.
1 change: 1 addition & 0 deletions cargo-dist/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ pub enum Commands {
Generate(GenerateArgs),
/// Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)
#[clap(disable_version_flag = true)]
#[clap(hide = true)]
GenerateCi(GenerateCiArgs),
/// Generate the final build manifest without running any builds.
///
Expand Down
13 changes: 6 additions & 7 deletions cargo-dist/tests/snapshots/long-help.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ Usage: cargo dist [OPTIONS]
cargo dist <COMMAND>

Commands:
build Build artifacts
init Setup or update cargo-dist
generate Generate one or more pieces of configuration
generate-ci Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)
manifest Generate the final build manifest without running any builds
plan Get a plan of what to build (and check project status)
help Print this message or the help of the given subcommand(s)
build Build artifacts
init Setup or update cargo-dist
generate Generate one or more pieces of configuration
manifest Generate the final build manifest without running any builds
plan Get a plan of what to build (and check project status)
help Print this message or the help of the given subcommand(s)

Options:
-h, --help
Expand Down
22 changes: 0 additions & 22 deletions cargo-dist/tests/snapshots/markdown-help.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ cargo dist <COMMAND>
* [build](#cargo-dist-build): Build artifacts
* [init](#cargo-dist-init): Setup or update cargo-dist
* [generate](#cargo-dist-generate): Generate one or more pieces of configuration
* [generate-ci](#cargo-dist-generate-ci): Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)
* [manifest](#cargo-dist-manifest): Generate the final build manifest without running any builds
* [plan](#cargo-dist-plan): Get a plan of what to build (and check project status)
* [help](#cargo-dist-help): Print this message or the help of the given subcommand(s)
Expand Down Expand Up @@ -189,26 +188,6 @@ Print help (see a summary with '-h')
### GLOBAL OPTIONS
This subcommand accepts all the [global options](#global-options)

<br><br><br>
## cargo dist generate-ci
Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)

### Usage

```text
cargo dist generate-ci [OPTIONS]
```

### Options
#### `--check`
Check if the generated output differs from on-disk config without writing it

#### `-h, --help`
Print help (see a summary with '-h')

### GLOBAL OPTIONS
This subcommand accepts all the [global options](#global-options)

<br><br><br>
## cargo dist manifest
Generate the final build manifest without running any builds.
Expand Down Expand Up @@ -288,7 +267,6 @@ cargo dist help [COMMAND]
* [build](#cargo-dist-build): Build artifacts
* [init](#cargo-dist-init): Setup or update cargo-dist
* [generate](#cargo-dist-generate): Generate one or more pieces of configuration
* [generate-ci](#cargo-dist-generate-ci): Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)
* [manifest](#cargo-dist-manifest): Generate the final build manifest without running any builds
* [plan](#cargo-dist-plan): Get a plan of what to build (and check project status)
* [help](#cargo-dist-help): Print this message or the help of the given subcommand(s)
Expand Down
13 changes: 6 additions & 7 deletions cargo-dist/tests/snapshots/short-help.snap
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ Usage: cargo dist [OPTIONS]
cargo dist <COMMAND>

Commands:
build Build artifacts
init Setup or update cargo-dist
generate Generate one or more pieces of configuration
generate-ci Generate CI scripts for orchestrating cargo-dist (deprecated in favour of generate)
manifest Generate the final build manifest without running any builds
plan Get a plan of what to build (and check project status)
help Print this message or the help of the given subcommand(s)
build Build artifacts
init Setup or update cargo-dist
generate Generate one or more pieces of configuration
manifest Generate the final build manifest without running any builds
plan Get a plan of what to build (and check project status)
help Print this message or the help of the given subcommand(s)

Options:
-h, --help Print help (see more with '--help')
Expand Down

0 comments on commit 095cfcf

Please sign in to comment.