@agi-cli/install 0.1.37 → 0.1.39
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 +1 -1
- package/start.js +4 -4
package/package.json
CHANGED
package/start.js
CHANGED
|
@@ -301,10 +301,10 @@ async function checkAndUpdateVersion(binaryPath) {
|
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
async function main() {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
304
|
+
if (isInWorkspace()) {
|
|
305
|
+
console.log('Detected workspace environment, skipping install script.');
|
|
306
|
+
return;
|
|
307
|
+
}
|
|
308
308
|
|
|
309
309
|
let binaryPath = findBinaryInPath();
|
|
310
310
|
|