Skip to content

Commit b0b0cc8

Browse files
committed
test: test output
1 parent 399cd9f commit b0b0cc8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

index.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,10 @@ async function run(lan, code, result) {
126126
exit(1);
127127
}
128128

129-
let dirPath = path.join(os.homedir(), "action");
130-
const filePath = path.join(dirPath, `assign-reviewer.${suffix}`);
131-
132129
try {
133-
dirPath = await fs.mkdtemp(dirPath);
130+
const dirPath = await fs.mkdtemp(path.join(os.homedir(), "action"));
131+
const filePath = path.join(dirPath, `assign-reviewer.${suffix}`);
132+
134133
await fs.writeFile(filePath, code, {
135134
encoding: "utf8",
136135
mode: 0o777,

0 commit comments

Comments
 (0)