Skip to content

Commit

Permalink
fix(nsis): fix spawnAndWrite reject in util (#4566)
Browse files Browse the repository at this point in the history
  • Loading branch information
codeudan authored and develar committed Jan 16, 2020
1 parent a215a83 commit 2229b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/builder-util/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export function spawnAndWrite(command: string, args: Array<string>, data: string
clearTimeout(timeout)
}
finally {
reject(error.stack || error.toString())
reject(error)
}
})

Expand Down

0 comments on commit 2229b28

Please sign in to comment.