Skip to content

Commit

Permalink
fix: rejects on error (#6216)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarkarachi committed Dec 18, 2020
1 parent 7876187 commit 473bea5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function downloadZip(s3, tempDir, zipFileName, envName) {
})
.catch(err => {
log(err);
resolve(err);
reject(err);
});
});
}
Expand Down

0 comments on commit 473bea5

Please sign in to comment.