Skip to content

Commit

Permalink
#209 Fixes PathNotFoundException: Cannot open file, path = '.idea/run…
Browse files Browse the repository at this point in the history
…Configurations/main_dev_dart.xml' (OS Error: No such file or directory, errno = 2)
  • Loading branch information
AngeloAvv committed Oct 27, 2023
1 parent 87d9a64 commit 180c344
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/src/processors/commons/new_file_string_processor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,10 @@ class NewFileStringProcessor extends AbstractFileStringProcessor {
processor,
config: config,
);

@override
void execute() {
file.createSync(recursive: true);
super.execute();
}
}

0 comments on commit 180c344

Please sign in to comment.