Skip to content

Commit

Permalink
fix: command id parsing bug in oclif
Browse files Browse the repository at this point in the history
patch for PR oclif/core#886
  • Loading branch information
Roy Razon committed Nov 26, 2023
1 parent e4ed7c3 commit 7c731b5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/@oclif+core+3.12.0.patch
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
diff --git a/node_modules/@oclif/core/lib/help/util.js b/node_modules/@oclif/core/lib/help/util.js
index 6c97a31..3a7ace6 100644
--- a/node_modules/@oclif/core/lib/help/util.js
+++ b/node_modules/@oclif/core/lib/help/util.js
@@ -43,7 +43,7 @@ function collateSpacedCmdIDFromArgs(argv, config) {
const ids = (0, util_1.collectUsableIds)(config.commandIDs);
const final = [];
const idPresent = (id) => ids.has(id);
- const finalizeId = (s) => (s ? [...final, s].join(':') : final.join(':'));
+ const finalizeId = (s) => (s ? [...final, s] : final).filter(Boolean).join(':');
const hasArgs = () => {
const id = finalizeId();
if (!id)
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
Expand Down

0 comments on commit 7c731b5

Please sign in to comment.