Skip to content

Commit 4350bb3

Browse files
Rename the last prisma-cli spellings the rebase left behind
One retry command in project show and two test expectations still said prisma-cli; both sides' lines merged cleanly past the rename commit. Signed-off-by: willbot <w.a.madden+machine@gmail.com> Signed-off-by: Will Madden <madden@prisma.io>
1 parent 6f45a87 commit 4350bb3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/cli/src/commands/project/show.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function showPresentations(
101101
? toNextActions(
102102
buildProjectSetupNextActions({
103103
commandName: "project show",
104-
retryCommand: "prisma-cli project show <id-or-name>",
104+
retryCommand: "prisma project show <id-or-name>",
105105
suggestedProjectName: result.suggestedProjectName,
106106
reason:
107107
"This directory is not linked to a Prisma Project. Package and directory names can suggest setup defaults, but they do not select a Project.",

packages/cli/tests/service-domain.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ describe("prisma service domain add", () => {
283283
{
284284
kind: "run-command",
285285
label: "List services",
286-
command: "prisma-cli service list",
286+
command: "prisma service list",
287287
},
288288
]);
289289
});

packages/cli/tests/service-show.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ describe("prisma service show", () => {
293293
expect(frame.envelope.nextActions).toContainEqual({
294294
kind: "run-command",
295295
label: "List services",
296-
command: "prisma-cli service list",
296+
command: "prisma service list",
297297
});
298298
});
299299
});

0 commit comments

Comments
 (0)