diff options
Diffstat (limited to 'usr/local/sbin/addaccess')
-rwxr-xr-x | usr/local/sbin/addaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/sbin/addaccess b/usr/local/sbin/addaccess index e2817ca..f0a4324 100755 --- a/usr/local/sbin/addaccess +++ b/usr/local/sbin/addaccess @@ -11,7 +11,7 @@ my ( $reponame, @users ) = @ARGV; my $repo = Piny::Repo->new( $reponame ); -if ( $repo->user->uid != $env->user->uid ) { +if ( $repo->owner->uid != $env->user->uid ) { print "You are not the owner of that repo!\n"; exit( 3 ); }; |