Skip to content

Commit

Permalink
Remove deb subcommand.
Browse files Browse the repository at this point in the history
cargo-deb is not installed in the pre-built images, but `cross deb` runs
in docker rather than falling back to the host.

Closes cross-rs#717.
  • Loading branch information
Alexhuszagh committed May 25, 2022
1 parent c4f5ae4 commit c797bd6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ pub enum Subcommand {
Rustc,
Test,
Bench,
Deb,
Clippy,
Metadata,
}
Expand Down Expand Up @@ -44,7 +43,6 @@ impl<'a> From<&'a str> for Subcommand {
"rustc" => Subcommand::Rustc,
"t" | "test" => Subcommand::Test,
"bench" => Subcommand::Bench,
"deb" => Subcommand::Deb,
"clippy" => Subcommand::Clippy,
"metadata" => Subcommand::Metadata,
_ => Subcommand::Other,
Expand Down

0 comments on commit c797bd6

Please sign in to comment.