pitrou commented on PR #43582:
URL: https://github.com/apache/arrow/pull/43582#issuecomment-2271258139
This diff seems to fix things locally for me (assuming
`ARCHERY_USE_DOCKER_CLI=0`), but it might have unforeseen consequences?
```diff
diff --git a/dev/archery/archery/docker/cli.py
b/dev/archery/archery/docker/cli.py
index 7053db2afc..a2e699d666 100644
--- a/dev/archery/archery/docker/cli.py
+++ b/dev/archery/archery/docker/cli.py
@@ -78,8 +78,7 @@ def docker(ctx, src, dry_run, using_docker_cli,
using_docker_buildx):
using_docker=using_docker_cli,
using_buildx=using_docker_buildx,
debug=ctx.obj.get('debug', False),
- compose_bin=("docker compose" if
using_docker_cli
- else "docker-compose"))
+ compose_bin="docker compose")
if dry_run:
_mock_compose_calls(compose)
ctx.obj['compose'] = compose
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]