Skip to content

Commit

Permalink
Reverse order of installed output statement
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
miketheman authored Jun 17, 2016
1 parent 0a94723 commit 65a9089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/common/src/command/package/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(_) => {
Expand Down

0 comments on commit 65a9089

Please sign in to comment.