Skip to content

Commit abe6b63

Browse files
authored
Fixed folder path for private repo (#34048)
1 parent 1eaa485 commit abe6b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/tools/spec-gen-sdk-runner/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ function getExecutionReport(commandInput: SpecGenSdkCmdInput): any {
252252
// Read the execution report to determine if the generation was successful
253253
const executionReportPath = path.join(
254254
commandInput.workingFolder,
255-
`${commandInput.sdkLanguage}_tmp/execution-report.json`,
255+
`${commandInput.sdkRepoName}_tmp/execution-report.json`,
256256
);
257257
return JSON.parse(fs.readFileSync(executionReportPath, "utf8"));
258258
}

0 commit comments

Comments
 (0)