diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-11-29 12:20:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-29 12:20:58 -0800 |
commit | f159b5cb1028bf4d2f75b0b48055fe19a8032f8e (patch) | |
tree | 64a760a7bd69d65251ae915773300429b3867723 /components/util/opts.rs | |
parent | a88487f96a5e17dfbaf02acd3a2af49456013b6e (diff) | |
parent | 1d56087188cebc518253d123594135ee1e2f92f1 (diff) | |
download | servo-f159b5cb1028bf4d2f75b0b48055fe19a8032f8e.tar.gz servo-f159b5cb1028bf4d2f75b0b48055fe19a8032f8e.zip |
Auto merge of #14292 - servo:rustup, r=KiChjang
Update to Rust 1.15.0-nightly (1c448574b 2016-11-28)
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14292)
<!-- Reviewable:end -->
Diffstat (limited to 'components/util/opts.rs')
-rw-r--r-- | components/util/opts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/opts.rs b/components/util/opts.rs index c46294afafc..b74b416395d 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -649,7 +649,7 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { for debug_string in opt_match.opt_strs("Z") { if let Err(e) = debug_options.extend(debug_string) { - return args_fail(&format!("error: unrecognized debug option: {}", e)); + args_fail(&format!("error: unrecognized debug option: {}", e)); } } |