Skip to content

Commit

Permalink
Merge pull request #752 from jethrogb/patch-2
Browse files Browse the repository at this point in the history
Do not interpret commas when using "rustup run"
  • Loading branch information
brson authored Oct 14, 2016
2 parents e9d0a38 + 35ec531 commit fc5580b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rustup-cli/rustup_mode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ pub fn cli() -> App<'static, 'static> {
.arg(Arg::with_name("toolchain")
.required(true))
.arg(Arg::with_name("command")
.required(true).multiple(true)))
.required(true).multiple(true).use_delimiter(false)))
.subcommand(SubCommand::with_name("which")
.about("Display which binary will be run for a given command")
.arg(Arg::with_name("command")
Expand Down

0 comments on commit fc5580b

Please sign in to comment.