Skip to content

Commit

Permalink
Clarify the descriptions of some of the command-line flags
Browse files Browse the repository at this point in the history
  • Loading branch information
stepchowfun committed Jan 5, 2024
1 parent 3cc3798 commit c1981be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ OPTIONS:
Sets the Docker CLI binary
-r, --docker-repo <REPO>
Sets the Docker repository
Sets the Docker repository for remote caching
-f, --file <PATH>
Sets the path to the toastfile
Expand All @@ -433,7 +433,7 @@ OPTIONS:
Sets whether remote cache reading is enabled
-s, --shell
Drops you into a shell after the tasks are finished
Drops you into a containerized shell after the tasks are finished
-v, --version
Prints version information
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ fn settings() -> Result<Settings, Failure> {
.value_name("REPO")
.short("r")
.long(DOCKER_REPO_OPTION)
.help("Sets the Docker repository"),
.help("Sets the Docker repository for remote caching"),
)
.arg(
Arg::with_name(DOCKER_CLI_OPTION)
Expand All @@ -247,7 +247,7 @@ fn settings() -> Result<Settings, Failure> {
Arg::with_name(SHELL_OPTION)
.short("s")
.long(SHELL_OPTION)
.help("Drops you into a shell after the tasks are finished"),
.help("Drops you into a containerized shell after the tasks are finished"),
)
.arg(
Arg::with_name(FORCE_OPTION)
Expand Down

0 comments on commit c1981be

Please sign in to comment.