Skip to content

Commit ce70078

Browse files
eunjae-leemillotp
andauthored
Update scripts/release/process-release.ts
Co-authored-by: Pierre Millot <[email protected]>
1 parent 09d10eb commit ce70078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release/process-release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ async function updateOpenApiTools(
112112
}
113113

114114
async function emptyDirExceptForDotGit(dir: string): Promise<void> {
115-
for await (const file of await fsp.readdir(dir)) {
115+
for (const file of await fsp.readdir(dir)) {
116116
if (file !== '.git') {
117117
await remove(path.resolve(dir, file));
118118
}

0 commit comments

Comments
 (0)