You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/wrangler/src/triggers/deploy.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,8 @@ export default async function triggersDeploy(
55
55
56
56
if(!scriptName){
57
57
thrownewUserError(
58
-
'You need to provide a name when uploading a Worker Version. Either pass it as a cli arg with `--name <name>` or in your config file as `name = "<name>"`'
58
+
'You need to provide a name when uploading a Worker Version. Either pass it as a cli arg with `--name <name>` or in your config file as `name = "<name>"`',
59
+
{telemetryMessage: true}
59
60
);
60
61
}
61
62
@@ -86,7 +87,7 @@ export default async function triggersDeploy(
0 commit comments