You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeTest/utils/UTGChatUtil.kt
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -98,17 +98,25 @@ fun runBuildOrTestCommand(
98
98
99
99
// Find the nearest Gradle root directory
100
100
var packageRoot:File?= testFileAbsolutePath.parentFile
101
+
var foundGradleRoot =false
101
102
while (packageRoot !=null&& packageRoot != projectRoot) {
102
103
if (File(packageRoot, "settings.gradle.kts").exists() ||File(packageRoot, "build.gradle.kts").exists() ||
0 commit comments