13 lines
187 B
Perl
Executable file
13 lines
187 B
Perl
Executable file
#!/usr/bin/perl
|
|
use strict;
|
|
use warnings;
|
|
|
|
BEGIN {
|
|
unlink "$ENV{HOME}/.ssh/authorized_keys";
|
|
}
|
|
|
|
# this is hardcoded; change it if needed
|
|
use lib "src";
|
|
use Gitolite::Test;
|
|
try 'put';
|