Skip to content

Commit

Permalink
fix bug renaming of crate
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbuel committed Nov 16, 2024
1 parent 3a9595a commit c0d3082
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ license = "MIT"
repository = "https://github.com/jvanbuel/flowrs"
authors = ["[email protected]"]

[[bin]]
name = "flowrs"
path = "src/main.rs"

[dependencies]
ansi-to-tui = { version = "7.0.0" }
backtrace = "0.3.73"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


build:
cargo build --release && cp target/debug/flowrs .
cargo build --release && cp target/release/flowrs .


logo:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cargo install --path .

You can register an Airflow server instance with the `flowrs config add` command:

TODO: Add example of prompt


This creates an entry in a `~/.flowrs` configuration file. If you have multiple Airflow servers configured, you can easily switch between them in `flowrs` starting screen.

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ lazy_static::lazy_static! {
use app::error::Result;

#[derive(Parser)]
#[clap(name = "flowrs", version, about, before_help=ASCII_LOGO)]
#[clap(name="flowrs", bin_name="flowrs", version, about, before_help=ASCII_LOGO)]
struct FlowrsApp {
#[clap(subcommand)]
command: Option<FlowrsCommand>,
Expand Down

0 comments on commit c0d3082

Please sign in to comment.