Skip to content

Commit

Permalink
fix(ci): Avoid single quoting vars
Browse files Browse the repository at this point in the history
Signed-off-by: txtsd <code@ihavea.quest>
  • Loading branch information
txtsd committed Oct 23, 2023
1 parent b907504 commit f33ceb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
FINAL_CHANGED_DIRS=()
for dir in $(echo $CHANGED_DIRS | sed "s|.github||")
do
FINAL_CHANGED_DIRS+=('$dir')
FINAL_CHANGED_DIRS+=("${dir}")
done
# Set output
echo "changed_pkgs=$(jq -cn '$ARGS.positional' --args "${FINAL_CHANGED_DIRS[@]}")" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit f33ceb1

Please sign in to comment.