Skip to content

Commit

Permalink
changed the logs location to present working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cs-raj committed Feb 7, 2024
1 parent 4a25fee commit 9b8f645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class ExportCommand extends Command {
static aliases: string[] = ['cm:export'];

async run(): Promise<void> {
let exportDir: string = path.join(__dirname, 'logs');
let exportDir: string = path.join(process.cwd(), 'logs');
try {
const { flags } = await this.parse(ExportCommand);
let exportConfig = await setupExportConfig(flags);
Expand Down

0 comments on commit 9b8f645

Please sign in to comment.