Skip to content

Commit 7c0e6c3

Browse files
author
Luis Fernando Planella Gonzalez
committed
Merge branch 'hbunjes-fix-model-namespace'
2 parents 288ab65 + 8bb697d commit 7c0e6c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/model.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ export class Model extends GenType {
7070

7171
protected initPathToRoot(): string {
7272
if (this.namespace) {
73-
return this.namespace.split('/').map(() => '../').join('/');
73+
// for each namespace level go one directory up
74+
// plus the "models" directory
75+
return this.namespace.split('/').map(() => '../').join('').concat('../');
7476
}
7577
return '../';
7678
}

0 commit comments

Comments
 (0)