Skip to content

Commit

Permalink
try parsing a different way
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Feb 11, 2024
1 parent 170298b commit 9bff674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upm-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if [ -z "$GIT_VERSIONS" ]; then
VERSIONS=$ALL_VERSIONS
else
VERSIONS=$(echo "$ALL_VERSIONS" | grep -vF "$GIT_VERSIONS")
VERSIONS=$(echo "$ALL_VERSIONS" | tr ',' '\n' | awk -v git_versions="$GIT_VERSIONS" '!index(git_versions,$0)' | tr '\n' ',')
fi
if [ -z "$VERSIONS" ]; then
VERSIONS_JSON="[]"
Expand Down

0 comments on commit 9bff674

Please sign in to comment.