Skip to content

Commit

Permalink
Merge pull request #33 from prisma/ankur-arch-patch-1
Browse files Browse the repository at this point in the history
fix: remove redundant npx
  • Loading branch information
ankur-arch authored Aug 28, 2024
2 parents bc1f4be + da85ce9 commit 3ef8c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package-utils/setup-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function initPrisma({
provider = "sqlite",
datasourceUrl,
}: PrismaInitOptions) {
const command = ["npx", "prisma", "init", "--datasource-provider"];
const command = ["prisma", "init", "--datasource-provider"];

command.push(provider);

Expand Down

0 comments on commit 3ef8c5e

Please sign in to comment.