Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yeager-eren committed Dec 31, 2023
1 parent 1dce2d1 commit 4afe6f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/common/github.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ export async function createPullRequest(pr) {
const output = await execa('gh', ['pr', 'create', ...ghCreateParams])
.then(({ stdout }) => stdout)
.catch((err) => {
throw new GithubCommandError('gh pr command failed. \n', err.stdout);
throw new GithubCommandError(
`gh pr command failed. \n ${err.stdout} \n ${err.stdout}`
);
});

return output;
Expand Down

0 comments on commit 4afe6f1

Please sign in to comment.