openmates 0.12.0-alpha.25 → 0.12.0-alpha.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9649,7 +9649,7 @@ function createServerBackup(installPath, role, options = {}) {
|
|
|
9649
9649
|
try {
|
|
9650
9650
|
const dump = execSync(
|
|
9651
9651
|
`docker exec cms-database pg_dump --clean --if-exists --no-owner --no-privileges -U ${shellQuote(databaseUser)} ${shellQuote(databaseName)}`,
|
|
9652
|
-
{ encoding: "utf-8" }
|
|
9652
|
+
{ encoding: "utf-8", maxBuffer: 256 * 1024 * 1024 }
|
|
9653
9653
|
);
|
|
9654
9654
|
writeFileSync3(join3(tempDir, "postgres.sql"), dump);
|
|
9655
9655
|
} catch (error) {
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED