Open
Description
Minimal reproducible example DAG
steps:
- name: step 1
command: echo HELLO; WORLD
Expected behavior
expected: HELLO; WORLD
actual: HELLO
If the arguments are enclosed with double quotes, this issue does not happen. So it should not be a critical issue.
steps:
- name: step 1
command: echo "HELLO; WORLD"