We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c70db commit 1e47a9fCopy full SHA for 1e47a9f
src/views/projectExplorer/migrateSource.ts
@@ -211,12 +211,7 @@ function fixExtensions(workspaceFolder: string): void {
211
212
const newFileName = fileSplit.join('.');
213
214
- fs.rename(path, workspaceFolder + "/" + newFileName, (error) => {
215
- if (error) {
216
- console.error(`Error fixing extension's case for file: ${fileDir}`);
217
- } else {
218
- console.log(`File ${fileDir} renamed successfully to ${newFileName}`);
219
- }
+ fs.rename(path, workspaceFolder + "/" + newFileName, () => {
220
});
221
}
222
0 commit comments