Skip to content

Commit

Permalink
Fix not creating build outputs directory
Browse files Browse the repository at this point in the history
Release 0.3.1
  • Loading branch information
Mishkun committed May 10, 2023
1 parent 3bb00d4 commit cb88d0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To use Lobzik, add the following to your root `build.gradle.kts`:

```kotlin
plugins {
id("xyz.mishkun.lobzik") version "0.3.0"
id("xyz.mishkun.lobzik") version "0.3.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "xyz.mishkun.lobzik"
version = "0.3.0"
version = "0.3.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ abstract class LobzikAnalyzeDependencyGraphTask : DefaultTask() {

@TaskAction
fun analyzeDependencies() {
outputDir.asFileTree
outputDir.asFile.get().mkdirs()
GraphRoutine(
monolithModule.get(),
featureModulesRegex.get(),
Expand Down

0 comments on commit cb88d0e

Please sign in to comment.