feat: support stew (#422)

This commit is contained in:
SteveLauC
2023-05-05 16:17:42 +08:00
committed by GitHub
parent d640bc66f5
commit f30e36d7bb
3 changed files with 9 additions and 0 deletions

View File

@@ -726,3 +726,10 @@ pub fn run_helm_repo_update(run_type: RunType) -> Result<()> {
Err(eyre!(StepFailed))
}
}
pub fn run_stew(run_type: RunType) -> Result<()> {
let stew = require("stew")?;
print_separator("stew");
run_type.execute(stew).args(["upgrade", "--all"]).status_checked()
}