Skip to content

Commit a0b48d2

Browse files
space separated, not newline separated
1 parent 133a8c9 commit a0b48d2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

node/sign_node_package/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ runs:
6767
.map(({ name, parentPath }) => join(parentPath, name))
6868
.filter(file => file.includes('build-') && file.includes('.tar.gz'));
6969
70-
process.stdout.write(tarFiles.join('\n'));
71-
process.stdout.write('\n')
70+
process.stdout.write(tarFiles.join(' '));
7271
EOF
7372
7473
FILENAMES=$(node ./script.js .)

0 commit comments

Comments
 (0)