Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/commands/build/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,13 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
}
);
for (path, reason) in errored_paths_and_reasons {
warn!(" - {} ({})", path.display(), reason);
warn!(" - {}", path.display());
if let Some(source) = reason.source() {
warn!(" Error: {}", reason);
warn!(" Cause: {}", source);
} else {
warn!(" Error: {}", reason);
}
Comment thread
runningcode marked this conversation as resolved.
Outdated
}
}

Expand Down