11/*
2- * Copyright (c) 2019-2024 , FusionAuth, All Rights Reserved
2+ * Copyright (c) 2019-2025 , FusionAuth, All Rights Reserved
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
1414 * language governing permissions and limitations under the License.
1515 */
1616
17- project(group: "io.fusionauth", name: "go-client", version: "1.59 .0", licenses: ["ApacheV2_0"]) {
17+ project(group: "io.fusionauth", name: "go-client", version: "1.60 .0", licenses: ["ApacheV2_0"]) {
1818 workflow {
1919 fetch {
2020 cache()
@@ -50,7 +50,7 @@ target(name: "format", description: "Formats the source code") {
5050
5151 def process = pb.start()
5252 process.consumeProcessOutput(System.out, System.err)
53- process.waitFor()
53+ assert process.waitFor() == 0
5454}
5555
5656target(name: "compile", description: "Compiles the source code", dependsOn: ["format"]) {
@@ -60,7 +60,7 @@ target(name: "compile", description: "Compiles the source code", dependsOn: ["fo
6060
6161 def process = pb.start()
6262 process.consumeProcessOutput(System.out, System.err)
63- process.waitFor()
63+ assert process.waitFor() == 0
6464}
6565
6666target(name: "test", description: "Runs the project's unit tests", dependsOn: ["compile"]) {
@@ -70,7 +70,7 @@ target(name: "test", description: "Runs the project's unit tests", dependsOn: ["
7070
7171 def process = pb.start()
7272 process.consumeProcessOutput(System.out, System.err)
73- process.waitFor()
73+ assert process.waitFor() == 0
7474}
7575
7676target(name: "int", description: "Releases a local integration build of the project", dependsOn: ["compile"]) {
0 commit comments