@rely-ai/caliber 1.29.5 → 1.29.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/dist/bin.js +4 -6
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -191,14 +191,12 @@ function resolveCaliber() {
|
|
|
191
191
|
}
|
|
192
192
|
try {
|
|
193
193
|
const whichCmd = process.platform === "win32" ? "where caliber" : "which caliber";
|
|
194
|
-
|
|
194
|
+
execSync6(whichCmd, {
|
|
195
195
|
encoding: "utf-8",
|
|
196
196
|
stdio: ["pipe", "pipe", "pipe"]
|
|
197
|
-
})
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
return _resolved;
|
|
201
|
-
}
|
|
197
|
+
});
|
|
198
|
+
_resolved = "caliber";
|
|
199
|
+
return _resolved;
|
|
202
200
|
} catch {
|
|
203
201
|
}
|
|
204
202
|
const binPath = process.argv[1];
|
package/package.json
CHANGED