mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 14:24:24 +00:00
fix(@embark/deployment): only log error when error exists
This was a regression introduced in 72fc80df53
This commit is contained in:
parent
740196684c
commit
bf0f4392a4
@ -108,7 +108,9 @@ class DeployManager {
|
||||
});
|
||||
}
|
||||
], (err) => {
|
||||
self.logger.error(err);
|
||||
if (err) {
|
||||
self.logger.error(err);
|
||||
}
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user