Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hasGitChanges.sh 225B

123456789101112
  1. #!/usr/bin/env bash
  2. curl -L https://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -o php-cs-fixer
  3. chmod +x php-cs-fixer
  4. ./php-cs-fixer fix
  5. if ! git diff-index --quiet HEAD --; then
  6. git --no-pager diff
  7. exit 1
  8. fi