Skip to content

Commit efc3aec

Browse files
committed
refactor(addon-verify): remove await declaration
1 parent 02a62ff commit efc3aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generators/addon-verify/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default {
8282

8383
await mkdir(join(output, folderName), { recursive: true });
8484

85-
for await (const file of files) {
85+
for (const file of files) {
8686
await writeFile(
8787
join(output, folderName, file.name),
8888
file.content

0 commit comments

Comments
 (0)