Skip to content

Commit 773824b

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 773824b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
- #718 - remove deb subcommand.
89
- #714 - use host target directory when falling back to host cargo.
910
- #713 - convert relative target directories to absolute paths.
1011
- #709 - Update Emscripten targets to `emcc` version 3.1.10

src/cargo.rs

-2
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)