1
Fork 0

Use a regular return instead of Deno.exit(0).

This commit is contained in:
Bauke 2023-07-28 20:17:18 +02:00
parent 87d43c33ae
commit d0d4a25470
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ async function main(): Promise<void> {
if (availableRemotes.length === 0) {
console.log("No remotes found");
Deno.exit(0);
return;
}
const remotesToPush = ["origin", "github", "gitlab"];