Skip to content

Commit

Permalink
Special handling build only when it's build server project and not bu…
Browse files Browse the repository at this point in the history
…ildship project

Signed-off-by: Sheng Chen <sheche@microsoft.com>
  • Loading branch information
jdneo committed Sep 19, 2023
1 parent c0e8f92 commit 5a0926d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static Object compile(CompileParams params, IProgressMonitor monitor) {
}
}

if (isBspProject(mainProject)) {
if (isBspProject(mainProject) && !ProjectUtils.isGradleProject(mainProject)) {
// Just need to trigger a build for the target project, the Gradle build server will
// handle the build dependencies for us.
try {
Expand Down

0 comments on commit 5a0926d

Please # to comment.