Skip to content

Commit 8895358

Browse files
authored
update autogen pipeline in js tool (#8171)
1 parent a236266 commit 8895358

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/js-sdk-release-tools/src/autoGenerateInPipeline.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ async function automationGenerateInPipeline(inputJsonPath: string, outputJsonPat
7575
gitCommitId: gitCommitId,
7676
})
7777
}
78-
} catch (e: any) {
79-
logger.logError(e.message);
78+
} catch (e) {
79+
logger.logError((e as any)?.message);
8080
throw e;
8181
} finally {
8282
await restoreNodeModules(String(shell.pwd()));

0 commit comments

Comments
 (0)