mik-laj commented on a change in pull request #19737:
URL: https://github.com/apache/airflow/pull/19737#discussion_r755028820
##########
File path: docker_tests/docker_tests_utils.py
##########
@@ -28,7 +29,7 @@
def run_command(cmd: List[str], print_output_on_error: bool = True, **kwargs):
- print(f"$ {' '.join(c for c in cmd)}")
+ print(f"$ {' '.join(shlex.quote(c) for c in cmd)}")
Review comment:
I don't see any reason why we shouldn't support the old versions
anymore. This is not a big change.
--
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]