diff --git a/README.md b/README.md index 6216428..a49c55f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ OPTIONS: find the merge base). [default: master] --cmd The command to use to skip the build. --path ... The path to inspect. Defaults to cwd. This arg can be specified multiple times to - inspect multiple paths. + inspect multiple paths. A path should point to any git node in the source tree. --remote The name of the tracked repository. [default: origin] ``` diff --git a/src/cli.rs b/src/cli.rs index 3311185..9441882 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -6,7 +6,7 @@ use structopt::StructOpt; #[derive(StructOpt)] #[structopt(name = "ssc", about = "should-skip-ci")] struct RawCli { - #[structopt(long = "path", help = "The path to inspect. Defaults to cwd. This arg can be specified multiple times to inspect multiple paths.")] + #[structopt(long = "path", help = "The path to inspect. Defaults to cwd. This arg can be specified multiple times to inspect multiple paths. A path should point to any git node in the source tree.")] paths: Vec, #[structopt(long = "remote", default_value = "origin", help = "The name of the tracked repository.")]