Skip to content

Commit

Permalink
fix: Rename completion binaries
Browse files Browse the repository at this point in the history
Having two identically named binaries is a warning at the moment and
will probably become an error at a later point.

See also:
rust-lang/cargo#6313
  • Loading branch information
DanielVoogsgerd committed Jul 23, 2024
1 parent d207470 commit 9564794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion brane-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ features = ["vendored"]
print_exec_path = [ "brane-exe/print_exec_path" ]

[[bin]]
name = "completions"
name = "brane-completions"
path = "src/completions.rs"
doc = false
2 changes: 1 addition & 1 deletion brane-ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ clap = { version = "4.5.6", features = ["derive","env"] }
result_large_err = { level = "allow", priority = 1 }

[[bin]]
name = "completions"
name = "branectl-completions"
path = "src/completions.rs"
doc = false

0 comments on commit 9564794

Please sign in to comment.