Skip to content

Commit

Permalink
fix line break
Browse files Browse the repository at this point in the history
  • Loading branch information
yanamura committed May 11, 2023
1 parent 54c5e44 commit 40866ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ function run() {
});
core.info(output);
output = removeStarLines(output);
output = output.replace(/%/g, '%25');
output = output.replace(/\n/g, '%0A');
output = output.replace(/\r/g, '%0D');
core.info(output);
core.setOutput("diff", output);
});
Expand Down
4 changes: 0 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ async function run(): Promise<void> {

core.info(output)
output = removeStarLines(output)
output = output.replace(/%/g, '%25')
output = output.replace(/\n/g, '%0A')
output = output.replace(/\r/g, '%0D')

core.info(output)

core.setOutput("diff", output)
Expand Down

0 comments on commit 40866ee

Please sign in to comment.