Regenerate embedded-postgres vendor patch

Rebuild the patch file with valid unified-diff hunks so pnpm can
apply the locale and environment fixes during install.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
dotta
2026-03-24 11:56:41 -05:00
parent f352f3f514
commit 4b668379bc

View File

@@ -1,9 +1,7 @@
diff --git a/dist/index.js b/dist/index.js diff --git a/dist/index.js b/dist/index.js
index ccfe17a82f4879bf20cc345c579a987d9eba5309..dd689f5908f625f49b4785318daea736aa88927f 100644
--- a/dist/index.js --- a/dist/index.js
+++ b/dist/index.js +++ b/dist/index.js
@@ -24,7 +24,7 @@ const { Client } = pg; @@ -23,7 +23,7 @@
* output of the `initdb` command to see if Postgres is ready. As we're looking
* for a particular string, we need to force that string into the right locale. * for a particular string, we need to force that string into the right locale.
* @see https://github.com/leinelissen/embedded-postgres/issues/15 * @see https://github.com/leinelissen/embedded-postgres/issues/15
*/ */
@@ -12,7 +10,7 @@ index ccfe17a82f4879bf20cc345c579a987d9eba5309..dd689f5908f625f49b4785318daea736
// The default configuration options for the class // The default configuration options for the class
const defaults = { const defaults = {
databaseDir: path.join(process.cwd(), 'data', 'db'), databaseDir: path.join(process.cwd(), 'data', 'db'),
@@ -133,7 +133,7 @@ class EmbeddedPostgres { @@ -133,7 +133,7 @@
`--pwfile=${passwordFile}`, `--pwfile=${passwordFile}`,
`--lc-messages=${LC_MESSAGES_LOCALE}`, `--lc-messages=${LC_MESSAGES_LOCALE}`,
...this.options.initdbFlags, ...this.options.initdbFlags,
@@ -21,7 +19,7 @@ index ccfe17a82f4879bf20cc345c579a987d9eba5309..dd689f5908f625f49b4785318daea736
// Connect to stderr, as that is where the messages get sent // Connect to stderr, as that is where the messages get sent
(_a = process.stdout) === null || _a === void 0 ? void 0 : _a.on('data', (chunk) => { (_a = process.stdout) === null || _a === void 0 ? void 0 : _a.on('data', (chunk) => {
// Parse the data as a string and log it // Parse the data as a string and log it
@@ -177,7 +177,7 @@ class EmbeddedPostgres { @@ -177,7 +177,7 @@
'-p', '-p',
this.options.port.toString(), this.options.port.toString(),
...this.options.postgresFlags, ...this.options.postgresFlags,