Skip to content

Commit 14f9783

Browse files
Adds missing git config
1 parent 751c65b commit 14f9783

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

src/main/java/io/micrometer/release/common/ProcessRunner.java

+1-8
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,7 @@ public List<String> run(String... command) {
109109
}
110110

111111
Process startProcess(String... processedCommand) throws IOException, InterruptedException {
112-
if (isGradleCommand(processedCommand)) {
113-
runGitConfig();
114-
}
112+
runGitConfig();
115113
ProcessBuilder processBuilder = new ProcessBuilder(processedCommand).redirectErrorStream(false);
116114
return doStartProcess(processBuilder);
117115
}
@@ -130,11 +128,6 @@ void runGitConfig() throws InterruptedException, IOException {
130128
.waitFor();
131129
}
132130

133-
private boolean isGradleCommand(String[] command) {
134-
return command != null && command.length > 0
135-
&& (command[0].endsWith("gradlew") || command[0].endsWith("gradle"));
136-
}
137-
138131
private String[] processCommand(String[] command) {
139132
String[] processedCommand = command;
140133
if (repo != null && command.length > 2 && command[0].equalsIgnoreCase("gh")

src/test/java/io/micrometer/release/single/GithubActionsE2eTests.java src/test/java/io/micrometer/release/single/SingleProjectGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
import static org.assertj.core.api.Assertions.assertThat;
2828

29-
class GithubActionsE2eTests implements GithubActions {
29+
class SingleProjectGithubActionsE2eTests implements GithubActions {
3030

3131
@BeforeAll
3232
static void should_go_through_whole_flow() {

src/test/java/io/micrometer/release/train/GithubActionsE2eTests.java src/test/java/io/micrometer/release/train/TrainGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import static org.assertj.core.api.Assertions.assertThat;
3131

32-
class GithubActionsE2eTests implements GithubActions {
32+
class TrainGithubActionsE2eTests implements GithubActions {
3333

3434
@BeforeAll
3535
static void should_go_through_whole_flow() {

0 commit comments

Comments
 (0)