Add dev tooling to use precious

This commit is contained in:
Dave Rolsky
2023-03-05 15:15:31 -06:00
parent aa7ccd3cba
commit b34ced72c6
5 changed files with 115 additions and 0 deletions

26
git/setup.pl Executable file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Cwd qw( abs_path );
symlink_hook('pre-commit');
sub symlink_hook {
my $hook = shift;
my $dot = ".git/hooks/$hook";
my $file = "git/hooks/$hook.sh";
my $link = "../../$file";
if ( -e $dot ) {
if ( -l $dot ) {
return if readlink $dot eq $link;
}
warn "You already have a hook at $dot!\n";
return;
}
symlink $link, $dot;
}