Skip to content

Commit a61993c

Browse files
committed
Use bash to launch reclaim space script
See gh-42776
1 parent 6825fec commit a61993c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/org/springframework/boot/build/test/DockerTestPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private Provider<Exec> createReclaimDockerSpaceTask(Project project,
124124
task.setDescription("Reclaims Docker space on CI.");
125125
task.shouldRunAfter(DOCKER_TEST_TASK_NAME);
126126
task.onlyIf(this::shouldReclaimDockerSpace);
127-
task.executable("sh");
127+
task.executable("bash");
128128
task.args("-c",
129129
project.getRootDir()
130130
.toPath()

0 commit comments

Comments
 (0)