Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

Commit

Permalink
Separate arguments fully into list
Browse files Browse the repository at this point in the history
  • Loading branch information
hatstand authored Jul 8, 2020
1 parent 0db59a6 commit c141599
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ runs:
using: 'docker'
image: 'Dockerfile'
args:
- --clang-format-executable /clang-format/clang-format${{ inputs.clangFormatVersion }}
- --clang-format-executable
- /clang-format/clang-format${{ inputs.clangFormatVersion }}
- -r
- --style ${{ inputs.style }}
- --extensions ${{ inputs.extensions }}
- --exclude ${{ inputs.exclude }}
- --style
- ${{ inputs.style }}
- --extensions
- ${{ inputs.extensions }}
- --exclude
- ${{ inputs.exclude }}
- ${{ inputs.source }}

0 comments on commit c141599

Please sign in to comment.