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 2d33349 commit faacb9bCopy full SHA for faacb9b
src/deploy.ts
@@ -391,7 +391,7 @@ export async function deploy(
391
);
392
}
393
if (instructions.status === "error" || fileErrors.length) {
394
- throw new CliError(`Server rejected deploy manifest: ${instructions.detail ?? "no details"}`);
+ throw new CliError(`Server rejected deploy manifest${instructions.detail ? `: ${instructions.detail}` : ""}`);
395
396
const filesToUpload: string[] = instructions.files
397
.filter((instruction) => instruction.status === "upload")
0 commit comments