@solcreek/dew 0.4.4 → 0.4.5
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/scripts/postinstall.js +6 -1
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -68,6 +68,11 @@ if (os.platform() === "darwin" && existsSync(binary) && !binary.endsWith(".exe")
|
|
|
68
68
|
);
|
|
69
69
|
console.log("dew: signed with virtualization entitlement");
|
|
70
70
|
} catch (e) {
|
|
71
|
-
console.log("
|
|
71
|
+
console.log("");
|
|
72
|
+
console.log("dew: ⚠️ codesign failed — VM commands (dew up, dew app run) will not work");
|
|
73
|
+
console.log("dew: this happens in sandboxed environments (some IDE terminals, CI)");
|
|
74
|
+
console.log("dew: try running in a regular Terminal/iTerm, or:");
|
|
75
|
+
console.log(`dew: codesign --entitlements "${entitlements}" --force -s - "${binary}"`);
|
|
76
|
+
console.log("");
|
|
72
77
|
}
|
|
73
78
|
}
|