aboutsummaryrefslogtreecommitdiff
path: root/misc/github-copilot-cli
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2026-03-01 20:55:07 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2026-03-01 20:55:07 +0000
commit5fdac53c577e649faf7e7ecb4b79b7b87fdf6c34 (patch)
tree8277bfa82b46a6b0b740bf00fc04e38c24965a4d /misc/github-copilot-cli
parentcc3c57ed68f1ba4e23e5e21b97609d474fb67f4c (diff)
Diffstat (limited to 'misc/github-copilot-cli')
-rw-r--r--misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js b/misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js
index 7c6235ea5a01..f17ba27128eb 100644
--- a/misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js
+++ b/misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js
@@ -4,7 +4,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
-+// Disable the built-in ripgrep (whic is non-existent) to ensure that the CLI uses the bundled version
++// Disable the built-in ripgrep (which is non-existent) to ensure that the CLI uses the externally installed ripgrep
+process.env.USE_BUILTIN_RIPGREP = 'false';
+
import{spawnSync as e}from"node:child_process";import{fileURLToPath as s}from"node:url";async function t(){try{const o=s(import.meta.resolve(`@github/copilot-${process.platform}-${process.arch}`)),r=e(o,process.argv.slice(2),{stdio:"inherit"});process.exit(r.status??1)}catch{}parseInt(process.versions.node.split(".")[0],10)<22&&(console.error(`GitHub Copilot CLI requires Node.js v22 or higher. Currently using v${process.versions.node}.`),process.exit(1));try{await import("./index.js")}catch(o){console.error("Failed to load GitHub Copilot CLI:",o),process.exit(1)}}t();