Skip to content

Commit f0602b9

Browse files
committed
fix(script): await execution of the script
for #219
1 parent ee6ea64 commit f0602b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/run-script-against-repositories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function runScriptAgainstRepositories(octokit, repositories, script
1212
octokit.log.setContext({repository: {id, owner, name}});
1313
}
1414

15-
script(octokit, repository, options);
15+
await script(octokit, repository, options);
1616
} catch (error) {
1717
if (!error.cancel) throw error;
1818
octokit.log.debug(error.message);

0 commit comments

Comments
 (0)