diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2012-06-13 15:23:37 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2012-06-13 15:23:37 -0700 |
commit | 1c882c0cbb6710d3c1e49efdc9160999524e9b34 (patch) | |
tree | bdb6890a2d0859b64eaa6658b93ce0a4184216c3 /pinyadmin/sbin/addaccess | |
parent | 65d805c56bdf9a3748db2d911046892e370394c6 (diff) | |
parent | 911981b2243ee3c15f269f16bdd172f7746564ce (diff) | |
download | piny-code-1c882c0cbb6710d3c1e49efdc9160999524e9b34.tar.gz piny-code-1c882c0cbb6710d3c1e49efdc9160999524e9b34.zip |
Merge branch 'master' of piny.be:/srv/git/piny-code
Diffstat (limited to 'pinyadmin/sbin/addaccess')
-rwxr-xr-x | pinyadmin/sbin/addaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinyadmin/sbin/addaccess b/pinyadmin/sbin/addaccess index e351114..557ed15 100755 --- a/pinyadmin/sbin/addaccess +++ b/pinyadmin/sbin/addaccess @@ -11,7 +11,7 @@ my ( $reponame, @users ) = @ARGV; my $repo = Piny::Repo->new( $reponame ); -if ( $repo->owner->uid != $env->user->uid ) { +if ( $env->user->uid != 0 and $repo->owner->uid != $env->user->uid ) { print "You are not the owner of that repo!\n"; exit( 3 ); }; |