Skip to content

Commit bccc43b

Browse files
committed
chore: Remove OpenShift arg
1 parent 9a9bd09 commit bccc43b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

rust/boil/src/cli.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ pub struct Cli {
1111
#[arg(short, long = "configuration", global = true, default_value_os_t = Self::default_config_path())]
1212
pub config_path: PathBuf,
1313

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-
1814
#[arg(short, long, default_value_os_t = Self::default_base_path())]
1915
pub base_path: PathBuf,
2016

@@ -27,10 +23,6 @@ impl Cli {
2723
PathBuf::from("./boil.toml")
2824
}
2925

30-
fn default_openshift_config_path() -> PathBuf {
31-
PathBuf::from("./openshift.toml")
32-
}
33-
3426
fn default_base_path() -> PathBuf {
3527
PathBuf::from(".")
3628
}

0 commit comments

Comments
 (0)