Skip to content

Commit

Permalink
build: fixed args lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Capito committed May 28, 2024
1 parent 6323878 commit fe3c4c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/bh-calver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export default class BlueHaloCalVer extends Plugin {
}
}

getIncrementedVersionCI() {
return this.getIncrementedVersion(arguments[0]);
getIncrementedVersionCI(...args) {
return this.getIncrementedVersion(args[0]);
}

getIncrement() {
Expand Down

0 comments on commit fe3c4c5

Please sign in to comment.