alsmanager_lib 1.0.69 → 1.0.70
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.
- package/lib/modules.js +2 -2
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -7909,8 +7909,8 @@ function exportDBSQLSQLite(db_path, dump_path, dump_source, dump_date) {
|
|
|
7909
7909
|
|
|
7910
7910
|
let cmd = "sqlite3 " + db_path + " ";
|
|
7911
7911
|
cmd += "\"" + ".output " + fileOut + "\"";
|
|
7912
|
-
cmd += "\"" + ".dump" + "\"";
|
|
7913
|
-
cmd += "\"" + ".quit" + "\"";
|
|
7912
|
+
cmd += " \"" + ".dump" + "\"";
|
|
7913
|
+
cmd += " \"" + ".quit" + "\"";
|
|
7914
7914
|
|
|
7915
7915
|
const exec = require('child_process').exec;
|
|
7916
7916
|
const child = exec(cmd,
|