Skip to content

Commit

Permalink
quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
JoergAtGithub committed Jun 9, 2024
1 parent 659e35c commit 6d1dc06
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 @@ -50,7 +50,7 @@ jobs:
working-directory: ${{ github.workspace }}
run: |
if ("${{ matrix.config.compiler }}" -eq "gcc") {
$OUTPUT = & "${{ matrix.config.compiler }}" "${{ matrix.config.flags }}" "${{ matrix.fileset }}"
$OUTPUT = & "${{ matrix.config.compiler }}" ${{ matrix.config.flags }} ${{ matrix.fileset }}
echo "result=$OUTPUT" >> $env:GITHUB_ENV
}
Expand All @@ -60,7 +60,7 @@ jobs:
shell: bash
working-directory: ${{ github.workspace }}
run: |
OUTPUT=$("${{ matrix.config.compiler }}" "${{ matrix.config.flags }}" "${{ matrix.fileset }}")
OUTPUT=$("${{ matrix.config.compiler }}" ${{ matrix.config.flags }} ${{ matrix.fileset }})
echo "result=$OUTPUT" >> $GITHUB_ENV
- name: Print vectorization results
Expand Down

0 comments on commit 6d1dc06

Please sign in to comment.