Skip to content

Commit 4e190b4

Browse files
committed
test: test output
1 parent b0b0cc8 commit 4e190b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ try {
6767
}
6868

6969
const result = core.getInput("result");
70-
const code = core.getMultilineInput("run");
70+
const code = core.getMultilineInput("run").join(os.EOL);
7171

7272
/**
7373
* this func will help to add feature owners to PR reviewer.
@@ -126,8 +126,9 @@ async function run(lan, code, result) {
126126
exit(1);
127127
}
128128

129+
let dirPath = path.join(os.homedir(), "action");
129130
try {
130-
const dirPath = await fs.mkdtemp(path.join(os.homedir(), "action"));
131+
dirPath = await fs.mkdtemp(dirPath);
131132
const filePath = path.join(dirPath, `assign-reviewer.${suffix}`);
132133

133134
await fs.writeFile(filePath, code, {

0 commit comments

Comments
 (0)