chore(cli): formatting + version consistency

This commit is contained in:
Cory Dransfeldt 2025-06-11 13:01:36 -07:00
parent fdd556df83
commit 970061ff9d
No known key found for this signature in database
15 changed files with 83 additions and 34 deletions

View file

@ -135,6 +135,7 @@ const runCurl = async ({
if (!url) {
console.error(`❌ Missing URL for job. Check ${urlEnvVar} in your .env`);
return;
}
@ -150,6 +151,7 @@ const runCurl = async ({
if (!res.ok) {
const errText = await res.text();
throw new Error(errText);
}