Skip to content

Commit

Permalink
Fix unused useSrcApiPath problem (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
sysnote8main authored Jul 1, 2024
1 parent 7b0342c commit 72c3e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if (!getFile(targetPackageJava).exists() && !getFile(targetPackageScala).exists(

if (apiPackage) {
final String endApiPath = modGroupPath + '/' + apiPackagePath
if (useSrcApiPath) {
if (useSrcApiPath.toBoolean()) {
targetPackageJava = 'src/api/java/' + endApiPath
targetPackageScala = 'src/api/scala/' + endApiPath
targetPackageKotlin = 'src/api/kotlin/' + endApiPath
Expand Down

0 comments on commit 72c3e3d

Please sign in to comment.