truncated newline into space (#580)

This commit is contained in:
TheRealMG 2024-10-13 16:38:27 -05:00 committed by GitHub
parent 181b1e6987
commit 95c7109a60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ jobs:
- name: Detect changed themes
id: get_changes
run: |
changed_themes=$(git diff --name-only HEAD^1 HEAD | grep '^themes/' | awk -F/ '{print $2}' | sort -u)
changed_themes=$(git diff --name-only HEAD^1 HEAD | grep '^themes/' | awk -F/ '{print $2}' | sort -u | tr '\n' ' ')
echo "CHANGED_THEMES=$changed_themes" >> $GITHUB_ENV
- name: Setup python modules