Skip to content

Commit

Permalink
Remove quiet option from the gradle wrapper call
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Sprey authored Apr 15, 2021
1 parent a3b2851 commit 751fe5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/cloudogu/ces/cesbuildlib/Gradle.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class Gradle implements Serializable {
protected abstract def gradle(String args, boolean printStdOut = true)

def gradlew(String args, boolean printStdOut) {
sh("./gradlew -q "+ args, printStdOut)
sh("./gradlew "+ args, printStdOut)
}

void sh(String command, boolean printStdOut) {
Expand Down

0 comments on commit 751fe5b

Please sign in to comment.