Skip to content

Commit 3285f55

Browse files
committed
fix(build): fix fiat-web to build normal jar
bootRepackage flag was using string interpretation of groovy truth
1 parent 55b1010 commit 3285f55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fiat-web/fiat-web.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies {
3939
}
4040

4141
applicationName = 'fiat'
42-
tasks.bootRepackage.enabled = project.repackage
42+
tasks.bootRepackage.enabled = Boolean.valueOf(project.repackage)
43+
4344

4445

0 commit comments

Comments
 (0)