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

Commit

Permalink
Merge 2347d84 into 74e994a
Browse files Browse the repository at this point in the history
  • Loading branch information
nakajo2011 committed Apr 20, 2019
2 parents 74e994a + 2347d84 commit 3dccfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/truffle-compile-vyper/index.js
Expand Up @@ -93,7 +93,7 @@ function execVyper(options, source_path, callback) {
}
const command = `vyper -f${formats.join(",")} ${source_path}`;

exec(command, function(err, stdout, stderr) {
exec(command, { maxBuffer: 600 * 1024 }, function(err, stdout, stderr) {
if (err)
return callback(
`${stderr}\n${colors.red(
Expand Down

0 comments on commit 3dccfa7

Please sign in to comment.