Skip to content

Commit

Permalink
replace mkdir() with mkdirs()
Browse files Browse the repository at this point in the history
  • Loading branch information
aSemy authored Feb 15, 2023
1 parent daed35f commit ebbe367
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class DefaultSubmoduleTemplateProcessor(
coroutineScope {
val source = this@visit
if (source.isDirectory) {
target.mkdir()
target.mkdirs()
val files = source.list().orEmpty()
val accWithSelf = configuredModulesPaths[source.absolutePath]
?.takeIf { files.firstOrNull { !it.startsWith(".") } != null }
Expand Down

0 comments on commit ebbe367

Please sign in to comment.