Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

Commit

Permalink
Fix goBuild and goClean in TestTop1000Task
Browse files Browse the repository at this point in the history
  • Loading branch information
blindpirate committed Apr 17, 2017
1 parent bff8c91 commit 4180512
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ goBuild {
stdout.append("Start building ${path}\n")
stderr.append("Start building ${path}\n")

ProcessBuilder pb = new ProcessBuilder().command('./gradlew', 'clean', 'build', '--stacktrace').directory(path.toFile())
ProcessBuilder pb = new ProcessBuilder().command('./gradlew', 'goClean', 'goBuild', '--stacktrace').directory(path.toFile())
pb.redirectOutput(ProcessBuilder.Redirect.appendTo(stdout))
pb.redirectError(ProcessBuilder.Redirect.appendTo(stderr))

Expand Down

0 comments on commit 4180512

Please sign in to comment.