We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9cae0e commit cadbbaaCopy full SHA for cadbbaa
src/execute-command.ts
@@ -60,7 +60,7 @@ export async function executeCommand(commandString: string) {
60
const error = result.reason;
61
const file = path.join(
62
reportsDirectory,
63
- `${repository.repository}-error.txt`,
+ `error-${repository.directoryName}.txt`,
64
);
65
const stringifiedError = inspect(error);
66
await writeFile(file, stringifiedError);
@@ -74,7 +74,7 @@ export async function executeCommand(commandString: string) {
74
75
76
77
- `${repository.repository}-success.diff`,
+ `${repository.directoryName}-success.diff`,
78
79
const diff = result.value;
80
await writeFile(file, diff);
0 commit comments