Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ class VagrantTestPlugin implements Plugin<Project> {
@Override
void afterExecute(Task task, TaskState state) {
if (state.failure != null) {
println "REPRODUCE WITH: gradle ${packaging.path} " +
println "REPRODUCE WITH: ./gradlew ${packaging.path} " +
"-Dtests.seed=${project.testSeed} "
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void testFailure(Failure failure) throws Exception {
return;
}

final StringBuilder b = new StringBuilder("REPRODUCE WITH: gradle ");
final StringBuilder b = new StringBuilder("REPRODUCE WITH: ./gradlew ");
String task = System.getProperty("tests.task");
// TODO: enforce (intellij still runs the runner?) or use default "test" but that won't work for integ
b.append(task);
Expand Down