We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9bd09 commit bccc43bCopy full SHA for bccc43b
rust/boil/src/cli.rs
@@ -11,10 +11,6 @@ pub struct Cli {
11
#[arg(short, long = "configuration", global = true, default_value_os_t = Self::default_config_path())]
12
pub config_path: PathBuf,
13
14
- /// Path to the OpenShift configuration file.
15
- #[arg(long, default_value_os_t = Self::default_openshift_config_path())]
16
- pub openshift_config_path: PathBuf,
17
-
18
#[arg(short, long, default_value_os_t = Self::default_base_path())]
19
pub base_path: PathBuf,
20
@@ -27,10 +23,6 @@ impl Cli {
27
23
PathBuf::from("./boil.toml")
28
24
}
29
25
30
- fn default_openshift_config_path() -> PathBuf {
31
- PathBuf::from("./openshift.toml")
32
- }
33
34
26
fn default_base_path() -> PathBuf {
35
PathBuf::from(".")
36
0 commit comments