Skip to content

Commit

Permalink
fix deploy trigegr name error devsapp/fc#782
Browse files Browse the repository at this point in the history
  • Loading branch information
wss-git committed Jul 14, 2022
1 parent ff7aeeb commit 5bdad2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default class FcDeployComponent {
for (let i = 0; i < this.fcTriggers.length; i++) {
if (
!_.isEmpty(targetTriggerNameArr) &&
targetTriggerNameArr.includes(this.fcTriggers[i].name)
!targetTriggerNameArr.includes(this.fcTriggers[i].name)
) {
continue;
}
Expand Down

0 comments on commit 5bdad2f

Please sign in to comment.