Skip to content

Commit ab50637

Browse files
Drop unnecessary error handling.
1 parent 74a59e8 commit ab50637

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/client/common/platform/fileSystem.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,7 @@ export class RawFileSystem implements IRawFileSystem {
9191
}
9292

9393
public async mkdirp(dirname: string): Promise<void> {
94-
return this.fsExtra.mkdirp(dirname)
95-
.catch(_err => {
96-
//throw err;
97-
});
94+
return this.fsExtra.mkdirp(dirname);
9895
}
9996

10097
public async rmtree(dirname: string): Promise<void> {

0 commit comments

Comments
 (0)