Skip to content

Commit

Permalink
fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaMN authored Nov 26, 2024
1 parent 14f09cb commit 3a9c248
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 @@ -71,7 +71,7 @@ jobs:
- name: Read packages from file
# Iterate through package.xml files and read folder names accounting for full path of where the command was initiated
run: |
PACKAGES=$(find ./src/${{ github.event.repository.name }} -maxdepth 2 -type f -name package.xml | grep -v "template_package" | sed 's/.*\/src\/${{ github.event.repository.name }}\///' | cut -d/ -f1)
PACKAGES=$(find ./src/carma-platform -maxdepth 2 -type f -name package.xml | grep -v "template_package" | sed 's/.*\/src\/carma-platform\///' | cut -d/ -f1 | tr '\n' ' ' | sed 's/ $//')
echo "Selected packages to build from this repository: $PACKAGES"
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
Expand Down

0 comments on commit 3a9c248

Please sign in to comment.