diff options
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/sbin/addaccess | 2 | ||||
-rwxr-xr-x | usr/local/sbin/rmaccess | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/sbin/addaccess b/usr/local/sbin/addaccess index f0a4324..8d0cef9 100755 --- a/usr/local/sbin/addaccess +++ b/usr/local/sbin/addaccess @@ -16,4 +16,4 @@ if ( $repo->owner->uid != $env->user->uid ) { exit( 3 ); }; -$repo->add_access( @users ); +$repo->add_access( map { Piny::User->new( $_ ) } @users ); diff --git a/usr/local/sbin/rmaccess b/usr/local/sbin/rmaccess index 563216d..f84fba0 100755 --- a/usr/local/sbin/rmaccess +++ b/usr/local/sbin/rmaccess @@ -16,4 +16,4 @@ if ( $repo->owner->uid != $env->user->uid ) { exit( 3 ); }; -$repo->remove_access( @users ); +$repo->remove_access( map { Piny::User->new( $_ ) } @users ); |