feat: support Bob (#461)

This commit is contained in:
SteveLauC
2023-06-23 17:03:57 +08:00
committed by GitHub
parent 5b8850e8a3
commit a6195d284c
3 changed files with 10 additions and 0 deletions

View File

@@ -784,3 +784,11 @@ pub fn run_stew(ctx: &ExecutionContext) -> Result<()> {
print_separator("stew");
ctx.run_type().execute(stew).args(["upgrade", "--all"]).status_checked()
}
pub fn run_bob(ctx: &ExecutionContext) -> Result<()> {
let bob = require("bob")?;
print_separator("Bob");
ctx.run_type().execute(bob).args(["update", "--all"]).status_checked()
}