mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
10 lines
196 B
Perl
10 lines
196 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => "PreCommitHello",
|
|
VERSION_FROM => "lib/PreCommitHello.pm",
|
|
EXE_FILES => [qw(bin/pre-commit-perl-hello)],
|
|
);
|