-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the github-action-deps group with 1 update
Bumps the github-action-deps group with 1 update: [actions/github-script](https://github.com/actions/github-script). - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
7e7edef
commit 4464298
Showing
14 changed files
with
332 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/node_modules/@oclif/core/lib/interfaces/parser.d.ts b/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
index acb8583..2d53745 100644 | ||
--- a/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
+++ b/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
@@ -200,6 +200,7 @@ export type OptionFlagProps = FlagProps & { | ||
helpValue?: string; | ||
options?: readonly string[]; | ||
multiple?: boolean; | ||
+ singleValue?: boolean; | ||
/** | ||
* Delimiter to separate the values for a multiple value flag. | ||
* Only respected if multiple is set to true. Default behavior is to | ||
diff --git a/node_modules/@oclif/core/lib/parser/parse.js b/node_modules/@oclif/core/lib/parser/parse.js | ||
index 032063d..72d2ed5 100644 | ||
--- a/node_modules/@oclif/core/lib/parser/parse.js | ||
+++ b/node_modules/@oclif/core/lib/parser/parse.js | ||
@@ -145,7 +145,7 @@ class Parser { | ||
continue; | ||
} | ||
} | ||
- if (parsingFlags && this.currentFlag && this.currentFlag.multiple) { | ||
+ if (parsingFlags && this.currentFlag && this.currentFlag.multiple && !this.currentFlag.singleValue) { | ||
this.raw.push({ flag: this.currentFlag.name, input, type: 'flag' }); | ||
continue; | ||
} |
Oops, something went wrong.