diff options
Diffstat (limited to 'src/gitjoe/chowner.pl')
-rwxr-xr-x | src/gitjoe/chowner.pl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gitjoe/chowner.pl b/src/gitjoe/chowner.pl index bd59aac..4e60118 100755 --- a/src/gitjoe/chowner.pl +++ b/src/gitjoe/chowner.pl @@ -24,11 +24,6 @@ sub main { open(my $owner_fh, '>:encoding(utf-8)', $home_dir . $repo . 'owner'); print $owner_fh $owner; close($owner_fh); - system( - '/usr/local/bin/dash', - '-c', - '/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'owner' - ); substr($repo, -1) = ""; print "Changed git repository " . colored($repo, 'bold green') . " owner for user " . colored($usr, 'bold') . ".\n" "New owner: ". colored($owner, 'bold green') . ".\n"; |