@abacus-ai/cli 2.5.3 → 2.5.4-canary.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -140,16 +140,6 @@ async function main() {
|
|
|
140
140
|
|
|
141
141
|
replaceBinary(stagedPath, targetPath);
|
|
142
142
|
|
|
143
|
-
// Also install the rg sibling so @codellm/ripgrep finds it next to process.execPath.
|
|
144
|
-
// Without this, the bun-compiled binary falls back to an embedded (broken) pkgRgPath.
|
|
145
|
-
const rgBinaryName = process.platform === "win32" ? "rg.exe" : "rg";
|
|
146
|
-
const sourceRg = path.join(tmpDir, rgBinaryName);
|
|
147
|
-
if (fs.existsSync(sourceRg)) {
|
|
148
|
-
const rgTarget = path.join(binDir, rgBinaryName);
|
|
149
|
-
fs.copyFileSync(sourceRg, rgTarget);
|
|
150
|
-
if (process.platform !== "win32") fs.chmodSync(rgTarget, 0o755);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
143
|
fs.writeFileSync(stampPath, VERSION);
|
|
154
144
|
fs.writeFileSync(path.join(binDir, ".install-source"), detectInstallPm());
|
|
155
145
|
|