Skip to content

Commit 75f8541

Browse files
committed
Auto merge of #4637 - kivikakk:vers-version, r=alexcrichton
Allow cargo install --version as well (preferred) Fixes #4590. The usage looks pretty ugly with this extra line in it, but it's not really avoidable with our docopt use. We fail if both are provided; accepting both feels like a path to demons.
2 parents 0d2b5a6 + 0cbfb67 commit 75f8541

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

src/bin/install.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use cargo::ops;
22
use cargo::core::{SourceId, GitReference};
3-
use cargo::util::{CliResult, Config, ToUrl};
3+
use cargo::util::{CargoError, CliResult, Config, ToUrl};
44

55
#[derive(Deserialize)]
66
pub struct Options {
@@ -24,6 +24,7 @@ pub struct Options {
2424

2525
arg_crate: Vec<String>,
2626
flag_vers: Option<String>,
27+
flag_version: Option<String>,
2728

2829
flag_git: Option<String>,
2930
flag_branch: Option<String>,
@@ -43,7 +44,8 @@ Usage:
4344
cargo install [options] --list
4445
4546
Specifying what crate to install:
46-
--vers VERS Specify a version to install from crates.io
47+
--vers VERSION Specify a version to install from crates.io
48+
--version VERSION
4749
--git URL Git URL to install the specified crate from
4850
--branch BRANCH Branch to use when installing from git
4951
--tag TAG Tag to use when installing from git
@@ -151,7 +153,11 @@ pub fn execute(options: Options, config: &mut Config) -> CliResult {
151153
};
152154

153155
let krates = options.arg_crate.iter().map(|s| &s[..]).collect::<Vec<_>>();
154-
let vers = options.flag_vers.as_ref().map(|s| &s[..]);
156+
let vers = match (&options.flag_vers, &options.flag_version) {
157+
(&Some(_), &Some(_)) => return Err(CargoError::from("Invalid arguments.").into()),
158+
(&Some(ref v), _) | (_, &Some(ref v)) => Some(v.as_ref()),
159+
_ => None,
160+
};
155161
let root = options.flag_root.as_ref().map(|s| &s[..]);
156162

157163
if options.flag_list {

tests/install.rs

+22
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,28 @@ fn vers_precise() {
921921
"));
922922
}
923923

924+
#[test]
925+
fn version_too() {
926+
pkg("foo", "0.1.1");
927+
pkg("foo", "0.1.2");
928+
929+
assert_that(cargo_process("install").arg("foo").arg("--version").arg("0.1.1"),
930+
execs().with_status(0).with_stderr_contains("\
931+
[DOWNLOADING] foo v0.1.1 (registry [..])
932+
"));
933+
}
934+
935+
#[test]
936+
fn not_both_vers_and_version() {
937+
pkg("foo", "0.1.1");
938+
pkg("foo", "0.1.2");
939+
940+
assert_that(cargo_process("install").arg("foo").arg("--version").arg("0.1.1").arg("--vers").arg("0.1.2"),
941+
execs().with_status(101).with_stderr_contains("\
942+
error: Invalid arguments.
943+
"));
944+
}
945+
924946
#[test]
925947
fn legacy_version_requirement() {
926948
pkg("foo", "0.1.1");

0 commit comments

Comments
 (0)