Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace internal Error with failure::Error #436

Merged
merged 1 commit into from
Nov 6, 2018

Conversation

alexcrichton
Copy link
Contributor

This commit removes the internal Error type in favor of exclusively
using the failure::Error type, simplifying error construction in a
number of locations and reducing the number of error types in play.

src/child.rs Outdated
for line in stdout.lines() {
msg.push_str(" ");
msg.push_str(line);
msg.push_str("\n");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is going to re-create the double-output thing, since the output is already re-printed as the command is run.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, indeed!

This commit removes the internal `Error` type in favor of exclusively
using the `failure::Error` type, simplifying error construction in a
number of locations and reducing the number of error types in play.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants