Skip to content

Commit

Permalink
Increase buffer size to 30MB (#400)
Browse files Browse the repository at this point in the history
* Changing buffer size to 30000

* Adding index files
  • Loading branch information
sylviamclaughlin authored Nov 20, 2024
1 parent d79bcf0 commit 8986e57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36496,7 +36496,7 @@ const execCommand = (command, directory) => {
output = proc
.execSync(command.exec, {
cwd: directory,
maxBuffer: 1024 * 10000,
maxBuffer: 1024 * 30000,
})
.toString("utf8");
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const execCommand = (command, directory) => {
output = proc
.execSync(command.exec, {
cwd: directory,
maxBuffer: 1024 * 10000,
maxBuffer: 1024 * 30000,
})
.toString("utf8");
} catch (error) {
Expand Down

0 comments on commit 8986e57

Please sign in to comment.