Skip to content

Commit

Permalink
substitiution
Browse files Browse the repository at this point in the history
  • Loading branch information
JoergAtGithub committed Jun 9, 2024
1 parent 3a73c32 commit 7c4021e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vectorization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
shell: bash
run: |
if [[ "${{ runner.os }}" == "Windows" ]]; then
OUTPUT=$(pwsh -c "& '${{ matrix.config.compiler }}' ${matrix.config.flags} '${{ env.FILE }}'")
OUTPUT=$(pwsh -c "& '${{ matrix.config.compiler }}' ${{matrix.config.flags}} '${{ env.FILE }}'")
echo "result=$OUTPUT" >> $GITHUB_ENV
else
OUTPUT=$("${{ matrix.config.compiler }}" ${matrix.config.flags} "${{ env.FILE }}")
OUTPUT=$("${{ matrix.config.compiler }}" ${{matrix.config.flags}} "${{ env.FILE }}")
echo "result=$OUTPUT" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 7c4021e

Please sign in to comment.