Skip to content

Commit

Permalink
🔨 fix botched rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesau committed Jan 22, 2025
1 parent 5aa7093 commit 2eb8454
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion baker/SiteBaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ export class SiteBaker {
knex
)
this.progressBar.tick({
name: "✅ bakeAllChangedGrapherPagesVariablesPngSvgAndDeleteRemovedGraphers",
name: "✅ bakeAllChangedGrapherPagesAndDeleteRemovedGraphers",
})
}
await this.bakeMultiDimPages(knex)
Expand Down
7 changes: 2 additions & 5 deletions baker/runBakeGraphers.ts
Original file line number Diff line number Diff line change
@@ -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"

/**
Expand All @@ -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
)
}
Expand Down

0 comments on commit 2eb8454

Please sign in to comment.