mango-cms 0.2.20 → 0.2.21
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/cli.js +2 -2
- package/default/package.json +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -558,8 +558,8 @@ async function checkPM2() {
|
|
|
558
558
|
|
|
559
559
|
// Helper function to manage PM2 process
|
|
560
560
|
async function managePM2Process(settings) {
|
|
561
|
-
const processName = `${settings.
|
|
562
|
-
const name = settings.
|
|
561
|
+
const processName = `${settings.database.toLowerCase()}-mango`;
|
|
562
|
+
const name = settings.database.toLowerCase()
|
|
563
563
|
|
|
564
564
|
try {
|
|
565
565
|
// Check if process exists
|
package/default/package.json
CHANGED