Remove extra try catch

This commit is contained in:
Owen 2025-07-16 16:56:05 -07:00
parent 98be9cee83
commit 7b726a41ef
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

View file

@ -1,15 +1,9 @@
import { ensureActions } from "./ensureActions";
import { copyInConfig } from "./copyInConfig";
import logger from "@server/logger";
import { clearStaleData } from "./clearStaleData";
export async function runSetupFunctions() {
try {
await copyInConfig(); // copy in the config to the db as needed
await ensureActions(); // make sure all of the actions are in the db and the roles
await clearStaleData();
} catch (error) {
logger.error("Error running setup functions:", error);
process.exit(1);
}
await copyInConfig(); // copy in the config to the db as needed
await ensureActions(); // make sure all of the actions are in the db and the roles
await clearStaleData();
}