Skip to content

Commit

Permalink
fix(cli): fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Mar 11, 2020
1 parent bbd1ac1 commit 18adb85
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/cli-check-branch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,14 @@ export const run = async (input = cli.input, flags = cli.flags) => {
exitStatus: 1,
stderr: null,
stdout: `${deletedBranchNames.join(",")} is matched by delete-github-branches's patterns:
{
includesBranchPatterns: ${includesBranchPatterns.join(",")}
excludesBranchPatterns: ${excludesBranchPatterns.join(",")}
}`
${JSON.stringify(
{
includesBranchPatterns: includesBranchPatterns,
excludesBranchPatterns: excludesBranchPatterns
},
null,
4
)}`
};
} else {
return {
Expand Down

0 comments on commit 18adb85

Please sign in to comment.