Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Improve comment
  • Loading branch information
henrymercer committed Jan 20, 2026
commit b880a1a7bd603ef1fc31a785fbae83130217e510
6 changes: 5 additions & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,11 @@ export async function bundleDb(
if (fs.existsSync(databaseBundlePath)) {
await fs.promises.rm(databaseBundlePath, { force: true });
}
// Copy the base database OIDs file into the database location if it exists
// When overlay is enabled, the base database OIDs file is included at the
// root of the database cluster. However when we bundle a database, we only
// include the per-language database. So, to ensure the base database OIDs
// file is included in the database bundle, we copy it from the cluster into
// the individual database location before bundling.
const baseDatabaseOidsFilePath = getBaseDatabaseOidsFilePath(config);
const additionalFiles: string[] = [];
if (fs.existsSync(baseDatabaseOidsFilePath)) {
Expand Down
Loading