From 65a908987ba05f4bb5ab9600da96a8ff9df029dc Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Fri, 17 Jun 2016 13:54:08 -0400 Subject: [PATCH] Reverse order of installed output statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When installing dependencies, reading the language doesn't make a ton of sense. Before: ``` → Using core/which/2.21/20160612155441 → Using core/zlib/1.2.8/20160612064520 → Using miketheman/custompkg which satisfies miketheman/custompkg/0.1.0/20160617171833 ``` After: ``` → Using core/which/2.21/20160612155441 → Using core/zlib/1.2.8/20160612064520 → Using miketheman/custompkg/0.1.0/20160617171833 which satisfies miketheman/custompkg ``` --- components/common/src/command/package/install.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/common/src/command/package/install.rs b/components/common/src/command/package/install.rs index dfadee9600..45770512e3 100644 --- a/components/common/src/command/package/install.rs +++ b/components/common/src/command/package/install.rs @@ -168,8 +168,8 @@ fn install_from_depot(url: &str, } else { println!("{} {} which satisfies {}", Green.paint("→ Using"), - given_ident, - ident.as_ref()); + ident.as_ref(), + given_ident); } } Err(_) => {