Skip to content

Commit

Permalink
docs(versions/create): backfill missing flag (#869)
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta authored Aug 24, 2023
1 parent 945b240 commit 4c6bc18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,12 @@ rdme versions --version={project-version}
rdme versions:create <version>
```

If you wish to automate the process of creating a new project version, and not have the CLI prompt you for input, you can do so by supplying the necessary flags to `versions:create`.
If you wish to automate the process of creating a new project version, and not have the CLI prompt you for input, you can do so by supplying the necessary flags to `versions:create`. The best way to ensure that you have supplied all the necessary flags is by running the command locally and verifying that the CLI does not prompt you.

For example:
For example, the following command contains all the flags to bypass the CLI prompts:

```sh
rdme versions:create <version> --fork={version-fork} --main={true|false} --beta={true|false} --isPublic={true|false}
rdme versions:create <version> --fork={version-fork} --main={true|false} --beta={true|false} --deprecated={true|false} --isPublic={true|false}
```

See `rdme versions:create --help` for a full list of flags.
Expand All @@ -406,7 +406,7 @@ See `rdme versions:create --help` for a full list of flags.
rdme versions:update <version>
```

Like `versions:create`, if you wish to automate this process and not be blocked by CLI input, you can supply the necessary flags to this command. See `rdme versions:update --help` for more information.
Like `versions:create`, if you wish to automate this process and not be blocked by CLI input, you can supply the necessary flags to this command. See `rdme versions:update --help` for a full list of flags.

#### Delete a Version

Expand Down

0 comments on commit 4c6bc18

Please sign in to comment.