diff --git a/baker/SiteBaker.tsx b/baker/SiteBaker.tsx index bcf79ee22c..03bc0932af 100644 --- a/baker/SiteBaker.tsx +++ b/baker/SiteBaker.tsx @@ -1107,7 +1107,7 @@ export class SiteBaker { knex ) this.progressBar.tick({ - name: "✅ bakeAllChangedGrapherPagesVariablesPngSvgAndDeleteRemovedGraphers", + name: "✅ bakeAllChangedGrapherPagesAndDeleteRemovedGraphers", }) } await this.bakeMultiDimPages(knex) diff --git a/baker/runBakeGraphers.ts b/baker/runBakeGraphers.ts index 02f862ea2e..350d055c64 100755 --- a/baker/runBakeGraphers.ts +++ b/baker/runBakeGraphers.ts @@ -1,5 +1,5 @@ #! /usr/bin/env node -import { bakeAllChangedGrapherPagesVariablesPngSvgAndDeleteRemovedGraphers } from "./GrapherBaker.js" +import { bakeAllChangedGrapherPagesAndDeleteRemovedGraphers } from "./GrapherBaker.js" import * as db from "../db/db.js" /** @@ -11,10 +11,7 @@ import * as db from "../db/db.js" const main = async (folder: string) => { return db.knexReadonlyTransaction( (trx) => - bakeAllChangedGrapherPagesVariablesPngSvgAndDeleteRemovedGraphers( - folder, - trx - ), + bakeAllChangedGrapherPagesAndDeleteRemovedGraphers(folder, trx), db.TransactionCloseMode.Close ) }