feat: support Bob (#461)
This commit is contained in:
@@ -103,6 +103,7 @@ pub enum Step {
|
|||||||
Asdf,
|
Asdf,
|
||||||
Atom,
|
Atom,
|
||||||
Bin,
|
Bin,
|
||||||
|
Bob,
|
||||||
BrewCask,
|
BrewCask,
|
||||||
BrewFormula,
|
BrewFormula,
|
||||||
Bun,
|
Bun,
|
||||||
|
|||||||
@@ -363,6 +363,7 @@ fn run() -> Result<()> {
|
|||||||
runner.execute(Step::GithubCliExtensions, "GitHub CLI Extensions", || {
|
runner.execute(Step::GithubCliExtensions, "GitHub CLI Extensions", || {
|
||||||
generic::run_ghcli_extensions_upgrade(&ctx)
|
generic::run_ghcli_extensions_upgrade(&ctx)
|
||||||
})?;
|
})?;
|
||||||
|
runner.execute(Step::Bob, "Bob", || generic::run_bob(&ctx))?;
|
||||||
|
|
||||||
if config.use_predefined_git_repos() {
|
if config.use_predefined_git_repos() {
|
||||||
if config.should_run(Step::Emacs) {
|
if config.should_run(Step::Emacs) {
|
||||||
|
|||||||
@@ -784,3 +784,11 @@ pub fn run_stew(ctx: &ExecutionContext) -> Result<()> {
|
|||||||
print_separator("stew");
|
print_separator("stew");
|
||||||
ctx.run_type().execute(stew).args(["upgrade", "--all"]).status_checked()
|
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()
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user