Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit 87900d3

Browse files
committed
fix: action output
1 parent 589863b commit 87900d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/action/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class ActionBase {
166166
let cur = this.stdmocks.shift() as ['stdout' | 'stderr', string[]]
167167
std = cur[0]
168168
this._write(std, cur[1])
169-
output += cur[1].map((a: any) => a.toString('utf8')).join('')
169+
output += (cur[1][0] as any).toString('utf8')
170170
}
171171
// add newline if there isn't one already
172172
// otherwise we'll just overwrite it when we render

0 commit comments

Comments
 (0)