Skip to content

Commit

Permalink
Surface failures when cloning test repo in gradle functional tests (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira authored Jan 11, 2025
1 parent 304d45d commit c584090
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ abstract class AbstractGitAwareGradleFuncTest extends AbstractGradleFuncTest {

def setup() {
remoteGitRepo = new File(setupGitRemote(), '.git')
"git clone ${remoteGitRepo.absolutePath} cloned".execute(Collections.emptyList(), testProjectDir.root).waitFor()
execute("git clone ${remoteGitRepo.absolutePath} cloned", testProjectDir.root)
buildFile = new File(testProjectDir.root, 'cloned/build.gradle')
settingsFile = new File(testProjectDir.root, 'cloned/settings.gradle')
}
Expand Down

0 comments on commit c584090

Please sign in to comment.