Skip to content

Commit 73142ae

Browse files
committed
Addresses prisma#824
1 parent ed78b15 commit 73142ae

File tree

3 files changed

+202
-1992
lines changed

3 files changed

+202
-1992
lines changed

cli/prisma2/src/Generate.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class Generate implements Command {
3636
public async parse(argv: string[], minimalOutput = false): Promise<string | Error> {
3737
const datamodelPath = await getSchemaPath()
3838
if (!datamodelPath) {
39-
throw new Error(`Can't find prisma.schema`) // TODO: Add this into a central place in getSchemaPath() as an arg
39+
throw new Error(`Can't find schema.prisma`) // TODO: Add this into a central place in getSchemaPath() as an arg
4040
}
4141
const generators = await getGenerators({
4242
schemaPath: datamodelPath,

0 commit comments

Comments
 (0)