plugin-updater 1.3.1 → 1.3.2
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/dist/git.js +4 -1
- package/package.json +1 -1
package/dist/git.js
CHANGED
|
@@ -4,7 +4,10 @@ import os from "os";
|
|
|
4
4
|
import { execSync } from "child_process";
|
|
5
5
|
import { getReposDir } from "./env.js";
|
|
6
6
|
import { writeLog } from "./log.js";
|
|
7
|
-
|
|
7
|
+
// dirs copied back from the temp build into the repo clone. core-loader/dist holds
|
|
8
|
+
// the loaders' TUI (tui.js), run as a separate process — without it `oc`/`cc` find
|
|
9
|
+
// no TUI and fall through to plain opencode/claude.
|
|
10
|
+
const BUILD_OUTPUT_DIRS = ["dist", path.join("core", "dist"), path.join("core-loader", "dist")];
|
|
8
11
|
export function executeGit(command, cwd) {
|
|
9
12
|
writeLog(`Executing git: ${command} in ${cwd}`);
|
|
10
13
|
try {
|