Replies: 2 comments
-
Try set your shell to bash |
Beta Was this translation helpful? Give feedback.
0 replies
-
Seems to work for me though:
commands:
- name: test
type: exec
description: "x"
arguments:
- name: who
description: Who to greet
required: true
shell: /bin/sh
script: |
set -x
for i in {1..5}
do
echo "hello {{.Arguments.who}}"
done |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This doesn't seem to work
But the old way works using
bash -cx
Beta Was this translation helpful? Give feedback.
All reactions