Created
February 8, 2011 09:25
-
-
Save chelmertz/816166 to your computer and use it in GitHub Desktop.
pre-commit hook for git, running php lint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
// copied from http://phpadvent.org/2008/dont-commit-that-error-by-travis-swicegood | |
// authored by Travis Swicegood | |
$output = array(); | |
$return = 0; | |
exec('git rev-parse --verify HEAD 2> /dev/null', $output, $return); | |
$against = $return == 0 ? 'HEAD' : '4b825dc642cb6eb9a060e54bf8d69288fbee4904'; | |
exec("git diff-index --cached --name-only {$against}", $output); | |
$filename_pattern = '/\.ph(tml|p)$/'; | |
$exit_status = 0; | |
foreach ($output as $file) { | |
if (!preg_match($filename_pattern, $file)) { | |
// don't check files that aren't PHP | |
continue; | |
} | |
if(!file_exists($file)) { | |
// if the file has been moved or deleted, | |
// the old filename should be skipped | |
continue; | |
} | |
$lint_output = array(); | |
exec("php -l " . escapeshellarg($file), $lint_output, $return); | |
if ($return == 0) { | |
continue; | |
} | |
echo implode("\n", $lint_output), "\n"; | |
$exit_status = 1; | |
} | |
exit($exit_status); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment