diff --git a/.github/workflows/release-published.yml b/.github/workflows/release-published.yml index eb744f6..aa4eee2 100644 --- a/.github/workflows/release-published.yml +++ b/.github/workflows/release-published.yml @@ -33,7 +33,13 @@ jobs: # Custom dependencies in case other formulas are needed to build the current one. # Optional - multiline string. - #depends_on: | + depends_on: | + fzf + gh + dust + bottom + procs + src-cli # Custom install command for your formula. # Required - string. diff --git a/crates/stats/src/perf.rs b/crates/stats/src/perf.rs index 607706d..c765034 100644 --- a/crates/stats/src/perf.rs +++ b/crates/stats/src/perf.rs @@ -2,13 +2,14 @@ pub struct Perf; impl Perf { fn run() -> eyre::Result<()> { - if let Err(_) = util::shell::run_with_input_and_output(&["ytop", "--version"], "".into()) { + if let Err(_) = util::shell::run_with_input_and_output(&["bottom", "--version"], "".into()) + { return Err(eyre::anyhow!( - "could not find ytop, please install or add to PATH" + "could not find bottom, please install or add to PATH" )); } - util::shell::run(&["ytop"], None)?; + util::shell::run(&["bottom"], None)?; Ok(()) }