oh-my-customcode 0.14.0 → 0.14.1
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/cli/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -14125,7 +14125,7 @@ async function generateMCPConfig(targetDir) {
|
|
|
14125
14125
|
}
|
|
14126
14126
|
try {
|
|
14127
14127
|
execSync3("uv venv .venv", { cwd: targetDir, stdio: "pipe" });
|
|
14128
|
-
execSync3(
|
|
14128
|
+
execSync3('uv pip install "ontology-rag @ git+https://github.com/baekenough/oh-my-customcode.git#subdirectory=packages/ontology-rag"', { cwd: targetDir, stdio: "pipe" });
|
|
14129
14129
|
} catch (error2) {
|
|
14130
14130
|
const msg = error2 instanceof Error ? error2.message : String(error2);
|
|
14131
14131
|
throw new Error(`Failed to setup Python environment: ${msg}`);
|