aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe-repodesc.pl
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 21:54:53 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 21:54:53 +0200
commit3b0b6367bcac30e9d53fe490fb8006483bb4e3d8 (patch)
tree985c396b6b40af62a11cc3e0d74c024cf915adc4 /src/gitjoe-repodesc.pl
parentI think that's the fix (diff)
downloadjoe-scripts-3b0b6367bcac30e9d53fe490fb8006483bb4e3d8.tar.gz
joe-scripts-3b0b6367bcac30e9d53fe490fb8006483bb4e3d8.tar.bz2
joe-scripts-3b0b6367bcac30e9d53fe490fb8006483bb4e3d8.tar.xz
joe-scripts-3b0b6367bcac30e9d53fe490fb8006483bb4e3d8.tar.zst
joe-scripts-3b0b6367bcac30e9d53fe490fb8006483bb4e3d8.zip
Rename
Diffstat (limited to 'src/gitjoe-repodesc.pl')
-rwxr-xr-xsrc/gitjoe-repodesc.pl32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/gitjoe-repodesc.pl b/src/gitjoe-repodesc.pl
deleted file mode 100755
index 96d5b54..0000000
--- a/src/gitjoe-repodesc.pl
+++ /dev/null
@@ -1,32 +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, 3 needed "
- . colored("[user - reponame - description]", 'bold')
- . "\n";
- exit 1;
- }
- my $usr = $ARGV[0];
- my $repo = $ARGV[1];
- my $desc = $ARGV[2];
- my $home_dir = '/usr/home/' . $usr . '/';
- if (substr($repo, -4) ne '.git') {
- $repo = $repo . '.git';
- }
- $repo = $repo . '/';
- open(my $desc_fh, '>:encoding(utf-8)', $home_dir . $repo . 'description');
- print $desc_fh $desc;
- close($desc_fh);
- exit;
-}
-
-main();
-
-__END__