Skip to content

Commit

Permalink
increase maxBuffer to 100MB
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinWijnant committed Apr 29, 2020
1 parent 2db7572 commit 767e0d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import { execFileSync } from 'child_process'

try {
checkInputs()
execFileSync(path(__dirname, 'entrypoint.sh'))
execFileSync(path(__dirname, 'entrypoint.sh'), [], {
maxBuffer: 1024 * 1024 * 100,
})
} catch (err) {
console.error(err)
setFailed(err instanceof Error ? err.message : err)
Expand Down

0 comments on commit 767e0d2

Please sign in to comment.