File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/manager/v2/fileSystem
src/manager/v2/fileSystem Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ var FileSystem = (function () {
168
168
ctx . getResource ( fullPath , function ( e , r ) {
169
169
if ( e )
170
170
return callback ( e ) ;
171
- r . create ( CommonTypes_1 . ResourceType . Directory , function ( e ) {
171
+ r . create ( CommonTypes_1 . ResourceType . Directory , true , function ( e ) {
172
172
if ( e && e !== Errors_1 . Errors . ResourceAlreadyExists )
173
173
return callback ( e ) ;
174
174
go ( ) ;
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ export abstract class FileSystem implements ISerializableFileSystem
233
233
if ( e )
234
234
return callback ( e ) ;
235
235
236
- r . create ( ResourceType . Directory , ( e ) => {
236
+ r . create ( ResourceType . Directory , true , ( e ) => {
237
237
if ( e && e !== Errors . ResourceAlreadyExists )
238
238
return callback ( e ) ;
239
239
You can’t perform that action at this time.
0 commit comments