aboutsummaryrefslogtreecommitdiff
path: root/src/docker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/docker.c')
-rw-r--r--src/docker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docker.c b/src/docker.c
index e90bf75..d5cffd9 100644
--- a/src/docker.c
+++ b/src/docker.c
@@ -156,10 +156,10 @@ int docker_capable(struct DockerCapabilities *result) {
guard_free(version);
if (!docker_exec("buildx build --help", OMC_DOCKER_QUIET)) {
- result->build |= OMC_DOCKER_BUILD;
+ result->build |= OMC_DOCKER_BUILD_X;
}
if (!docker_exec("build --help", OMC_DOCKER_QUIET)) {
- result->build |= OMC_DOCKER_BUILD_X;
+ result->build |= OMC_DOCKER_BUILD;
}
if (!result->build) {
// can't use docker without a build plugin