mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-24 05:44:59 +00:00
Fix name of Docker binaries
This commit fixes an oops when pushing a change to add the building of the Docker images. A change that was made for testing was accidentally left behind. This commit addresses that.
This commit is contained in:
parent
11dd412ec6
commit
ed45acf221
@ -259,7 +259,7 @@ class BuildPlugin implements Plugin<Project> {
|
||||
rootProject.rootProject.ext.requiresDocker = []
|
||||
rootProject.gradle.taskGraph.whenReady { TaskExecutionGraph taskGraph ->
|
||||
// check if the Docker binary exists and record its path
|
||||
final List<String> maybeDockerBinaries = ['/usr/bin/docker2', '/usr/local/bin/docker2']
|
||||
final List<String> maybeDockerBinaries = ['/usr/bin/docker', '/usr/local/bin/docker']
|
||||
final String dockerBinary = maybeDockerBinaries.find { it -> new File(it).exists() }
|
||||
|
||||
int exitCode
|
||||
|
Loading…
x
Reference in New Issue
Block a user