Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
87c9c36f6c
|
|||
2f19707e94
|
8
.github/workflows/release-published.yml
vendored
8
.github/workflows/release-published.yml
vendored
@@ -33,7 +33,13 @@ jobs:
|
|||||||
|
|
||||||
# Custom dependencies in case other formulas are needed to build the current one.
|
# Custom dependencies in case other formulas are needed to build the current one.
|
||||||
# Optional - multiline string.
|
# Optional - multiline string.
|
||||||
#depends_on: |
|
depends_on: |
|
||||||
|
fzf
|
||||||
|
gh
|
||||||
|
dust
|
||||||
|
bottom
|
||||||
|
procs
|
||||||
|
src-cli
|
||||||
|
|
||||||
# Custom install command for your formula.
|
# Custom install command for your formula.
|
||||||
# Required - string.
|
# Required - string.
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -316,7 +316,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toolkit"
|
name = "toolkit"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"eyre",
|
"eyre",
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "toolkit"
|
name = "toolkit"
|
||||||
description = "Toolkit is an opinionated toolkit complementing a personal development workflow. Many of the commands are quite verbose, and well suited for adding to your shell toolbelt"
|
description = "Toolkit is an opinionated toolkit complementing a personal development workflow. Many of the commands are quite verbose, and well suited for adding to your shell toolbelt"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license-file = "LICENSE"
|
license-file = "LICENSE"
|
||||||
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
|
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
|
||||||
|
@@ -2,13 +2,14 @@ pub struct Perf;
|
|||||||
|
|
||||||
impl Perf {
|
impl Perf {
|
||||||
fn run() -> eyre::Result<()> {
|
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!(
|
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(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user