Skip to content

Commit c797bd6

Browse files
committed
Remove deb subcommand.
cargo-deb is not installed in the pre-built images, but `cross deb` runs in docker rather than falling back to the host. Closes #717.
1 parent c4f5ae4 commit c797bd6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/cargo.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ pub enum Subcommand {
1515
Rustc,
1616
Test,
1717
Bench,
18-
Deb,
1918
Clippy,
2019
Metadata,
2120
}
@@ -44,7 +43,6 @@ impl<'a> From<&'a str> for Subcommand {
4443
"rustc" => Subcommand::Rustc,
4544
"t" | "test" => Subcommand::Test,
4645
"bench" => Subcommand::Bench,
47-
"deb" => Subcommand::Deb,
4846
"clippy" => Subcommand::Clippy,
4947
"metadata" => Subcommand::Metadata,
5048
_ => Subcommand::Other,

0 commit comments

Comments
 (0)