File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/cli/src/helpers/core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments