Skip to content

Commit 29fd382

Browse files
authored
Merge pull request #855 from etehtsea/expand-err
fix(deploy): Prevent swallowing the error
2 parents c97e48b + 0b06714 commit 29fd382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/deploy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ impl DeployCommand {
162162

163163
self.deploy_cloud(login_connection)
164164
.await
165-
.map_err(|e| anyhow!("{}\n\nLearn more at {}", e, DEVELOPER_CLOUD_FAQ))
165+
.map_err(|e| anyhow!("{:?}\n\nLearn more at {}", e, DEVELOPER_CLOUD_FAQ))
166166
}
167167
}
168168

0 commit comments

Comments
 (0)