@themoltnet/cli 0.8.0 → 0.9.0
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/install.js +4 -3
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -164,9 +164,10 @@ async function main() {
|
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
main().catch((err) => {
|
|
167
|
-
console.
|
|
168
|
-
console.
|
|
167
|
+
console.warn(`Warning: Failed to install moltnet binary: ${err.message}`);
|
|
168
|
+
console.warn(
|
|
169
169
|
`\nYou can download it manually from:\n ${BASE_URL}/`
|
|
170
170
|
);
|
|
171
|
-
|
|
171
|
+
// Exit 0 so postinstall doesn't break `pnpm install` for the whole monorepo
|
|
172
|
+
process.exit(0);
|
|
172
173
|
});
|