Skip to content

Commit

Permalink
chore: remove template string with no variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayteki95 committed Jan 14, 2025
1 parent 2e31490 commit 1a1fd3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class ControllerUtility {

private static getSourceDirPath(version: string): string {
if (version === 'v2') {
return path.resolve(__dirname, `../../sources`);
return path.resolve(__dirname, '../../sources');
}
return path.resolve(__dirname, `../../${version}/sources`);
}
Expand Down

0 comments on commit 1a1fd3f

Please sign in to comment.