From f0cb40d9e4b8d3285ac7125fb40433d65fae172e Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Wed, 8 Jul 2020 16:43:14 +0200 Subject: Directory tree rework --- src/gitjoe-rmrepo.pl | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100755 src/gitjoe-rmrepo.pl (limited to 'src/gitjoe-rmrepo.pl') diff --git a/src/gitjoe-rmrepo.pl b/src/gitjoe-rmrepo.pl deleted file mode 100755 index 30ce4d2..0000000 --- a/src/gitjoe-rmrepo.pl +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/local/bin/perl - -use strict; -use warnings; -use Term::ANSIColor; - -sub main { - my $argc = $#ARGV + 1; - if ($argc < 2) { - print colored("Failed!\n", 'bold red') - . "Missing argument, 2 needed " - . colored("[user - reponame]", 'bold') - . "\n"; - exit 1; - } - my $usr = $ARGV[0]; - my $repo = $ARGV[1]; - my $home_dir = '/usr/home/' . $usr . '/'; - if (substr($repo, -4) ne '.git') { - $repo = $repo . '.git'; - } - $repo = $repo . '/'; - system( - '/usr/local/bin/dash', - '-c', - '/bin/rm -rfv ' . $home_dir . $repo - ); - exit; -} - -main(); - -__END__ -- cgit v1.2.3