blob: 86b2dd09f58080a17c239229f9609bbec711071d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/perl
use strict;
use warnings;
use Piny;
my $env = Piny::Environment->new( );
my ( $reponame, @users ) = @ARGV;
my $repo = Piny::Repo->new( $reponame );
if ( $repo->user->uid != $env->user->uid ) {
print "You are not the owner of that repo!\n";
exit( 3 );
};
$repo->remove_access( @users );
|