Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2072 from trufflesuite/postinstall-log
Browse files Browse the repository at this point in the history
Fix: Output instead of throw on postinstall errors
  • Loading branch information
CruzMolina committed Jun 3, 2019
2 parents 37e99cc + bed5dd4 commit 4bb5caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/truffle/scripts/postinstall.js
Expand Up @@ -19,5 +19,5 @@ const postinstallObtain = () => {
try {
postinstallObtain();
} catch (error) {
throw error;
console.error(error);
}

0 comments on commit 4bb5caa

Please sign in to comment.