aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 20:27:14 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 20:27:14 +0200
commite7efce2b405bd312b07a67f3d546201faf9b21dd (patch)
tree0d028730cb1af8c5b3ba8473b6a60b01267b80c4
parentTest (diff)
downloadjoe-scripts-e7efce2b405bd312b07a67f3d546201faf9b21dd.tar.gz
joe-scripts-e7efce2b405bd312b07a67f3d546201faf9b21dd.tar.bz2
joe-scripts-e7efce2b405bd312b07a67f3d546201faf9b21dd.tar.xz
joe-scripts-e7efce2b405bd312b07a67f3d546201faf9b21dd.tar.zst
joe-scripts-e7efce2b405bd312b07a67f3d546201faf9b21dd.zip
push
-rwxr-xr-xupdate-gitjoe.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/update-gitjoe.pl b/update-gitjoe.pl
index 5c06236..92b7622 100755
--- a/update-gitjoe.pl
+++ b/update-gitjoe.pl
@@ -17,7 +17,7 @@ sub get_repos_index {
$i += 1;
}
$i = 0;
- print 'User: ' . colored($user, 'bold') . " repos: \n";
+ print 'User - ' . colored($user, 'bold') . " - repositories: \n";
while ($i < @repos) {
print $repos[$i] . "\n";
$i += 1;
@@ -29,10 +29,10 @@ sub get_repos_index {
sub stagit_generate {
my $user = $_[0];
- my @repos = $_[1];
+ my @repos = @_[1];
my $i = 0;
while ($i < @repos) {
- print $repos[$i];
+ print colored($repos[$i], 'bold red') . "\n";
$i += 1;
}
return;