Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Fix Deploy Error (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam authored and aly76 committed Jul 21, 2021
1 parent 3bc8bd7 commit d759f06
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/sfpowerscripts-cli/src/impl/deploy/DeployImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default class DeployImpl {



let packageInstallationResult = await retry(
let packageInstallationResult:PackageInstallationResult = await retry(
async (bail,count) => {

try {
Expand Down Expand Up @@ -268,7 +268,8 @@ export default class DeployImpl {
error: null,
};
} catch (err) {
SFPLogger.log(JSON.stringify(err),LoggerLevel.ERROR, this.props.packageLogger);

SFPLogger.log(err,LoggerLevel.ERROR, this.props.packageLogger);

return {
deployed: deployed,
Expand Down

0 comments on commit d759f06

Please sign in to comment.