Skip to content

Commit

Permalink
chore(client): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timsuchanek committed Apr 24, 2020
1 parent 33a5d58 commit 77d7164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/client/src/generation/generateClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export async function generateClient({
`${path.sep}node_modules${path.sep}`,
)
runtimePath =
runtimePath || (isInNodeModules ? './runtime' : '@prisma/client/runtime')
runtimePath || (isInNodeModules ? '@prisma/client/runtime' : './runtime')

debug(`outputDir: ${outputDir}`)
const dotPrismaDir = path.join(outputDir, '../../.prisma/client')
Expand Down

0 comments on commit 77d7164

Please sign in to comment.