Skip to content

Commit

Permalink
fix files variable setting
Browse files Browse the repository at this point in the history
Signed-off-by: ISP akm <[email protected]>
  • Loading branch information
xygyo77 committed Jun 21, 2024
1 parent 2b17584 commit b758118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cppcheck-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
continue-on-error: true
id: cppcheck
run: |
files=$(steps.get-modified-files.outputs.all_changed_files)
files=$(echo ${{ steps.get-modified-files.outputs.all_changed_files }})
if [ -n "$files" ]; then
echo "Running Cppcheck on changed files: $files"
cppcheck --inline-suppr --enable=all --inconclusive --check-level=exhaustive --error-exitcode=1 --suppressions-list=.cppcheck_suppressions $files 2> cppcheck-report.txt
Expand Down

0 comments on commit b758118

Please sign in to comment.