@mcpcloud/cli 0.10.1-next-20260715014243 → 0.10.2
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3972,7 +3972,7 @@ function isSuccessEvent(event) {
|
|
|
3972
3972
|
if (SUCCESS_LEVELS.has(event.level))
|
|
3973
3973
|
return true;
|
|
3974
3974
|
const m = event.message.toLowerCase();
|
|
3975
|
-
if (m.includes("deployment active") || m.includes("deploy succeeded"))
|
|
3975
|
+
if (m.includes("deployment is active") || m.includes("deployment active") || m.includes("deploy succeeded"))
|
|
3976
3976
|
return true;
|
|
3977
3977
|
return false;
|
|
3978
3978
|
}
|
package/package.json
CHANGED