Skip to content

Commit

Permalink
projectnessie#6094 FIx style
Browse files Browse the repository at this point in the history
  • Loading branch information
agilelab-tmnd1991 committed Feb 14, 2023
1 parent e4c9727 commit c018d70
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions servers/quarkus-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,14 @@ val pullOpenApiSpec by

val openApiSpecDir = buildDir.resolve("openapi-extra")
val useDocker = project.hasProperty("docker")
val arch = if (project.hasProperty("arm64")) {
Arch.ARM64
} else if (project.hasProperty("amd64")) {
Arch.AMD64
} else {
Arch.AMD64
}
val arch =
if (project.hasProperty("arm64")) {
Arch.ARM64
} else if (project.hasProperty("amd64")) {
Arch.AMD64
} else {
Arch.AMD64
}
val packageType = quarkusPackageType()
val quarkusBuilderImage = libs.versions.quarkusBuilderImage.get()

Expand Down

0 comments on commit c018d70

Please sign in to comment.