Skip to content

Commit f5e1e4c

Browse files
Changes the way we clone repos
1 parent 182cb82 commit f5e1e4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/io/micrometer/release/train/DependencyVerifier.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ GradleParser gradleParser(ProcessRunner branchProcessRunner) {
121121

122122
private File cloneRepo(String branch, String orgRepository) {
123123
log.info("Cloning out {} branch to folder {}", branch, branch);
124-
processRunner.run("git", "clone", "-b", branch, "--single-branch",
125-
"https://github.com/" + orgRepository + ".git", branch);
124+
processRunner.run("gh", "repo", "clone", orgRepository, branch, "--", "-b", branch, "--single-branch");
126125
return clonedDir(branch);
127126
}
128127

0 commit comments

Comments
 (0)