We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed78b15 commit 73142aeCopy full SHA for 73142ae
cli/prisma2/src/Generate.ts
@@ -36,7 +36,7 @@ export class Generate implements Command {
36
public async parse(argv: string[], minimalOutput = false): Promise<string | Error> {
37
const datamodelPath = await getSchemaPath()
38
if (!datamodelPath) {
39
- throw new Error(`Can't find prisma.schema`) // TODO: Add this into a central place in getSchemaPath() as an arg
+ throw new Error(`Can't find schema.prisma`) // TODO: Add this into a central place in getSchemaPath() as an arg
40
}
41
const generators = await getGenerators({
42
schemaPath: datamodelPath,
0 commit comments