Skip to content

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaGiorgadze committed May 23, 2023
1 parent 7de0106 commit 384e7c2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ runs:
expect EOF
shell: bash
- run: |
IFS=$'\n'
for command in ${inputs.commands}
do
/usr/local/bin/ory "$command"
IFS=$'\n' read -d '' -ra commands <<< "${{ inputs.commands }}"
for command in "${commands[@]}"; do
ory "$command"
done
shell: bash

0 comments on commit 384e7c2

Please sign in to comment.