Skip to content

Commit

Permalink
remove -q
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Oct 2, 2024
1 parent a8c9ae0 commit 8f32107
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/code-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,17 @@ jobs:
uses: dcarbone/install-jq-action@v2
- name: Run PHP CS Fixer
run: |
<<<<<<< Updated upstream
composer global require friendsofphp/php-cs-fixer:${{ inputs.version }} -q
export RULES=$(echo $'${{ inputs.rules }} ${{ inputs.add-rules }}'|tr -d '\n\t\r '|jq -s '.[0] * .[1]' -crM)
export EXCLUDE_PATTERNS=$(echo $'${{ inputs.exclude-patterns }}'|tr -d '\n\t\r ')
CMD_PATH=$([ "$EXCLUDE_PATTERNS" == "" ] && echo "$CONFIG_PATH")
CONFIG_OR_RULES=$([ ! -z "$CONFIG" ] && echo "--config=$CONFIG" || echo --rules=$RULES)
=======
composer global require friendsofphp/php-cs-fixer:${{ inputs.version }}
CONFIG="${{ inputs.config }}"
RULES=$(echo $'${{ inputs.rules }} ${{ inputs.add-rules }}'|tr -d '\n\t\r '|jq -s '.[0] * .[1]' -crM)
>>>>>>> Stashed changes

echo "TEST"
set -x
Expand Down

0 comments on commit 8f32107

Please sign in to comment.