Skip to content

Commit

Permalink
Merge #718
Browse files Browse the repository at this point in the history
718: Remove deb subcommand. r=Alexhuszagh a=Alexhuszagh

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.

Co-authored-by: Alex Huszagh <[email protected]>
  • Loading branch information
bors[bot] and Alexhuszagh authored May 25, 2022
2 parents c4f5ae4 + 773824b commit 2f24bd4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

- #718 - remove deb subcommand.
- #714 - use host target directory when falling back to host cargo.
- #713 - convert relative target directories to absolute paths.
- #709 - Update Emscripten targets to `emcc` version 3.1.10
Expand Down
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 2f24bd4

Please sign in to comment.