Last active
February 13, 2017 20:39
-
-
Save jeffa/0dc64f5cccf813d77e0aa3ac2ae5644a to your computer and use it in GitHub Desktop.
Git pre-commit hook
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/env perl | |
| use strict; | |
| use warnings; | |
| use App::Prove; | |
| my $app = App::Prove->new; | |
| $app->process_args( @ARGV, '-l' ); | |
| exit( $app->run ? 0 : 1 ); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perl is the best. 🥇