Skip to content

Commit cadbbaa

Browse files
committed
Fix report path
1 parent e9cae0e commit cadbbaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execute-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function executeCommand(commandString: string) {
6060
const error = result.reason;
6161
const file = path.join(
6262
reportsDirectory,
63-
`${repository.repository}-error.txt`,
63+
`error-${repository.directoryName}.txt`,
6464
);
6565
const stringifiedError = inspect(error);
6666
await writeFile(file, stringifiedError);
@@ -74,7 +74,7 @@ export async function executeCommand(commandString: string) {
7474

7575
const file = path.join(
7676
reportsDirectory,
77-
`${repository.repository}-success.diff`,
77+
`${repository.directoryName}-success.diff`,
7878
);
7979
const diff = result.value;
8080
await writeFile(file, diff);

0 commit comments

Comments
 (0)