Skip to content

Commit

Permalink
Fix bug to wait for all projects (#3117)
Browse files Browse the repository at this point in the history
  • Loading branch information
chanseokoh authored May 29, 2018
1 parent 5922065 commit 36ceb36
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ public static boolean waitUntilNoBuildErrors(IProject... projects) throws CoreEx

/** Fail if there are any build errors on any project in the workspace. */
public static void failIfBuildErrors() throws CoreException {
failIfBuildErrors("Projects have build errors", getWorkspace().getRoot().getProjects());
failIfBuildErrors("Projects have build errors");
}

public static void failIfBuildErrors(String message) throws CoreException {
failIfBuildErrors(message, getWorkspace().getRoot().getProjects());
}

/** Fail if there are any build errors on the specified projects. */
Expand Down

0 comments on commit 36ceb36

Please sign in to comment.