Skip to content

Commit

Permalink
dist update
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Uchkunev committed Feb 3, 2025
1 parent 86a7b7a commit fbb0299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function executePiper (
outString.split('\n').forEach(line => {
// piperOutput += line.includes('fatal') ? `::error::${line}\n` : `${line}\n`
if (line.includes('fatal')) {
notice(`line contains fatal: ${line}`)
notice(`stdout line contains fatal: ${line}`)
piperOutput += `::error::${line}\n`
} else {
piperOutput += `${line}\n`
Expand All @@ -41,7 +41,7 @@ export async function executePiper (
const outString = data.toString()
outString.split('\n').forEach(line => {
if (line.includes('fatal')) {
notice(`line contains fatal: ${line}`)
notice(` stderr line contains fatal: ${line}`)
piperError += `::error::${line}\n`
} else {
piperError += `${line}\n`
Expand Down

0 comments on commit fbb0299

Please sign in to comment.