Skip to content

Commit

Permalink
Add missing 'await' for services.run().
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrause committed Jun 9, 2024
1 parent 39ae579 commit 645ab86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openapiToEffect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ export const run = async (argsRaw: Array<string>): Promise<void> => {
log: console.log,
};

servicesStorage.run({ logger }, async () => {
await servicesStorage.run({ logger }, async () => {
const command: null | string = args.positionals[0] ?? null;
if (command === null || args.values.help) {
printUsage();
Expand Down

0 comments on commit 645ab86

Please sign in to comment.