Skip to content

Commit

Permalink
Merge pull request #265 from dhanush-2397/dev
Browse files Browse the repository at this point in the history
Readme file error resolved
  • Loading branch information
htvenkatesh authored Sep 12, 2023
2 parents 7298bea + e3ff830 commit 33eb5e7
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ export class UploadDimensionFileService {
const files = fs.readdirSync(folderPath);
let promises = [];
for(let i=0;i<files?.length;i++){
if(files[i]?.includes('.md')){
continue
}
const filePath = folderPath + '/' +files[i]
const fileName: string = files[i]?.split('-')[0]
console.log("The file name is:", fileName)
Expand Down

0 comments on commit 33eb5e7

Please sign in to comment.