Skip to content

Commit

Permalink
feat: rename 'skip-build-cache' to 'no-build-cache'
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHedmad committed Apr 15, 2024
1 parent 2525042 commit fe58151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/tutorial/run_containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ In this way, Kerblam! will run the containers with the proper paths.
Sometimes, you want to skip using the build cache when executing a pipeline
with a container executable.

Using `kerblam run my_pipeline --skip-build-cache` will do just that: the
Using `kerblam run my_pipeline --no-build-cache` will do just that: the
build backend will be told not to use the cached layers for that build (with
[the `--no-cache` flag](https://docs.docker.com/reference/cli/docker/image/build/#options)).
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ enum Command {
#[arg(long, short, action)]
local: bool,
/// Skip using build cache if running in containers.
#[arg(long = "skip-build-cache", action)]
#[arg(long = "no-build-cache", action)]
skip_build_cache: bool,
/// Command line arguments to be passed to child process
#[clap(last = true, allow_hyphen_values = true)]
Expand Down

0 comments on commit fe58151

Please sign in to comment.