Hadrien Croubois 2 years ago
parent
commit
26f7ce2081
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/formal-verification.yml

+ 1 - 1
.github/workflows/formal-verification.yml

@@ -42,7 +42,7 @@ jobs:
         run: |
           if [[ ${{ github.event_name }} = 'pull_request' ]];
           then
-            RESULT=$(git diff ${{ github.event.pull_request.head.sha }}..${{ github.event.pull_request.base.sha }} --name-only certora/specs/*.spec | while IFS= read -r file; do [[ -f $file ]] && basename "${file%.spec}"; done)
+            RESULT=$(git diff ${{ github.event.pull_request.head.sha }}..${{ github.event.pull_request.base.sha }} --name-only certora/specs/*.spec | while IFS= read -r file; do [[ -f $file ]] && basename "${file%.spec}"; done | tr "\n" " ")
           else
             RESULT='--all'
           fi