We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4569f01 commit c8b327bCopy full SHA for c8b327b
packages/cli-v3/src/commands/deploy.ts
@@ -676,6 +676,7 @@ async function failDeploy(
676
677
switch (serverDeployment.status) {
678
case "PENDING":
679
+ case "INSTALLING":
680
case "DEPLOYING":
681
case "BUILDING": {
682
await doOutputLogs();
packages/core/src/v3/schemas/api.ts
@@ -465,6 +465,7 @@ export const GetDeploymentResponseBody = z.object({
465
id: z.string(),
466
status: z.enum([
467
"PENDING",
468
+ "INSTALLING",
469
"BUILDING",
470
"DEPLOYING",
471
"DEPLOYED",
0 commit comments