Skip to content

Commit

Permalink
🐝 reformat, make sure process exits
Browse files Browse the repository at this point in the history
  • Loading branch information
danyx23 committed Aug 13, 2024
1 parent 01e0ab9 commit 03be17a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion devTools/syncGraphersToR2/syncGraphersToR2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,10 @@ async function sync(parsedArgs: parseArgs.ParsedArgs, dryRun: boolean) {
})
}

async function storeDevBySlug(parsedArgs: parseArgs.ParsedArgs, dryRun: boolean) {
async function storeDevBySlug(
parsedArgs: parseArgs.ParsedArgs,
dryRun: boolean
) {
console.log("Dummy implementation for store-dev-by-slug")
}

Expand All @@ -301,6 +304,7 @@ async function main(parsedArgs: parseArgs.ParsedArgs) {
)
break
}
process.exit(0)
}

const parsedArgs = parseArgs(process.argv.slice(2))
Expand Down

0 comments on commit 03be17a

Please sign in to comment.