fix: await main function (#411)

Fixes https://github.com/supabase/setup-cli/issues/410
This commit is contained in:
Julien Goux
2026-04-10 10:22:03 +02:00
committed by GitHub
parent 7fef86c665
commit afb0a590ff
2 changed files with 36 additions and 23 deletions

View File

@@ -204,5 +204,5 @@ export async function run(): Promise<void> {
}
if (process.argv[1] === fileURLToPath(import.meta.url)) {
void run();
await run();
}