Skip to content

Commit

Permalink
fix(lint): fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Mar 2, 2024
1 parent 9f7d9ab commit e3d123d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/sfp-cli/src/impl/deploy/DeployImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,11 +421,18 @@ export default class DeployImpl {

if (pkgDescriptor.skipTesting) {
SFPLogger.log(
`Skip Testing: ${COLOR_KEY_MESSAGE(pkgDescriptor.skipTesting ? 'true' : 'false')}`,
`Skip Testing: ${COLOR_KEY_MESSAGE('true')}`,
LoggerLevel.INFO,
this.props.logger
);
}
else{
SFPLogger.log(
`Skip Testing: ${COLOR_KEY_MESSAGE('false')}`,
LoggerLevel.INFO,
this.props.logger
);
}

if (alwaysDeployMessage) SFPLogger.log(alwaysDeployMessage, LoggerLevel.INFO, this.props.logger);
SFPLogger.printHeaderLine('',COLOR_HEADER,LoggerLevel.INFO,this.props.logger);
Expand Down

0 comments on commit e3d123d

Please sign in to comment.