Skip to content

Commit c91bc7c

Browse files
authored
fix(cli): wrangler deploy commands (#635)
1 parent 16eb4db commit c91bc7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/cli/src/helpers/core/post-installation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,12 +453,12 @@ function getWranglerDeployInstructions(
453453
if (webDeploy === "wrangler") {
454454
const deployPath = backend === "self" ? "apps/web" : "apps/web";
455455
instructions.push(
456-
`${pc.bold("Deploy web to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd ${deployPath} && ${runCmd} run deploy`}`,
456+
`${pc.bold("Deploy web to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd ${deployPath} && ${runCmd} deploy`}`,
457457
);
458458
}
459459
if (serverDeploy === "wrangler" && backend !== "self") {
460460
instructions.push(
461-
`${pc.bold("Deploy server to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd apps/server && ${runCmd} run deploy`}`,
461+
`${pc.bold("Deploy server to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd apps/server && ${runCmd} deploy`}`,
462462
);
463463
}
464464

0 commit comments

Comments
 (0)