Skip to content

Commit

Permalink
Merge pull request #158 from bacongobbler/more-context
Browse files Browse the repository at this point in the history
add more context to certain errors
  • Loading branch information
bacongobbler committed Dec 18, 2023
2 parents 8cabbeb + 61887a9 commit 7c32d40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ impl DeployCommand {

client
.add_revision(storage_id.clone(), version.clone())
.await?;
.await
.context(format!("Unable to upload {}", version.clone()))?;

for kv in self.key_values {
client
Expand Down

0 comments on commit 7c32d40

Please sign in to comment.