Skip to content

Commit

Permalink
fix: mitigate exit code 141 when running update EEA workflow
Browse files Browse the repository at this point in the history
Signed-off-by: sebthom <sebthom@users.noreply.github.com>
  • Loading branch information
sebthom committed Sep 7, 2024
1 parent e481be6 commit 86de96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-eea-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
clean verify \
-Deea-generator.action=generate
updates=$(git -C . ls-files -o -m -d --exclude-standard | head -n 50)
updates=$(git -C . ls-files -o -m -d --exclude-standard | head -n 50 || true) # "|| true" is to mitgate exit code 141
if [[ -z $updates ]]; then
echo "updates=" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 86de96d

Please sign in to comment.