Skip to content

Commit

Permalink
- Fixed pathing issue inconsistency as sdk is now added automatical…
Browse files Browse the repository at this point in the history
…ly by generator
  • Loading branch information
DavidArayan committed Dec 13, 2023
1 parent 2149852 commit e3aab49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk-core/src/generator/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class Generator {
schemas.push(Schema.generate(<CoreController>(new (<any>controller)())));
});

const outputDir: string = `./${data.output}/${data.package.name}`;
const outputDir: string = `./${data.output}/${data.package.name}-sdk`;

// ensure project folder exists
fs.mkdirSync(`${outputDir}/src/schemas`, { recursive: true });
Expand Down

0 comments on commit e3aab49

Please sign in to comment.