Skip to content

Commit

Permalink
Simiplify mkdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Dec 19, 2024
1 parent 69a277a commit bccd766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ tasks.register<Exec>("generateRelayList") {
doLast {
val output = standardOutput as ByteArrayOutputStream
// Create file if needed
File("$extraAssetsDirectory").mkdirs()
relayListPath.mkdirs()
relayListPath.createNewFile()
FileOutputStream(relayListPath).use { it.write(output.toByteArray()) }
}
Expand Down

0 comments on commit bccd766

Please sign in to comment.