fix(critical): Use helmfile repos instead of sync

This commit is contained in:
Nikolai Rodionov
2023-04-04 11:56:51 +02:00
parent cff0139c09
commit c2f2a3b8e6
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ impl Connector for Helmfile {
}
}
fn sync_repos(&self) -> Result<()> {
let cmd: String = format!("helmfile -f {} -e {} sync", self.path, self.env);
let cmd: String = format!("helmfile -f {} -e {} repos", self.path, self.env);
Command::new("bash")
.arg("-c")
.arg(cmd)