diff --git a/devTools/syncGraphersToR2/syncGraphersToR2.ts b/devTools/syncGraphersToR2/syncGraphersToR2.ts index e57df4324d1..52df77a92f6 100644 --- a/devTools/syncGraphersToR2/syncGraphersToR2.ts +++ b/devTools/syncGraphersToR2/syncGraphersToR2.ts @@ -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") } @@ -301,6 +304,7 @@ async function main(parsedArgs: parseArgs.ParsedArgs) { ) break } + process.exit(0) } const parsedArgs = parseArgs(process.argv.slice(2))