Skip to content

Commit

Permalink
Merge pull request #1753 from dthyresson/dt-prisma-command-space-path
Browse files Browse the repository at this point in the history
[v0.25] - Prisma migrate dev now handles schema path with spaces
  • Loading branch information
dthyresson committed Feb 8, 2021
2 parents 528c365 + 8020b95 commit de32e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/prisma.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const builder = (yargs) => {
console.error(c.error('\n Cannot run command. No Prisma Schema found.\n'))
process.exit(1)
}
autoFlags.push('--schema', paths.api.dbSchema)
autoFlags.push('--schema', `"${paths.api.dbSchema}"`)
}

execa(
Expand Down

0 comments on commit de32e09

Please sign in to comment.