telique-mcp 1.0.6 → 1.0.7
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/setup.js +2 -1
- package/package.json +1 -1
package/dist/setup.js
CHANGED
|
@@ -304,7 +304,8 @@ function getClaudeDesktopConfigPath() {
|
|
|
304
304
|
}
|
|
305
305
|
function commandExists(cmd) {
|
|
306
306
|
try {
|
|
307
|
-
|
|
307
|
+
const check = process.platform === "win32" ? `where ${cmd}` : `which ${cmd}`;
|
|
308
|
+
execSync(check, { stdio: "ignore" });
|
|
308
309
|
return true;
|
|
309
310
|
}
|
|
310
311
|
catch {
|