Skip to content

Commit c4a429e

Browse files
Error content lost on try/catch block (#107)
1 parent 2c95f78 commit c4a429e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/lib/buildAndPushContainers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module.exports = {
6262
try {
6363
await docker.checkAuth(registryAuth);
6464
} catch (err) {
65-
throw new Error(`Authentication to registry failed`);
65+
throw new Error(`Docker error : ${err}`);
6666
}
6767

6868
const containerNames = Object.keys(this.containers);

0 commit comments

Comments
 (0)