diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 20:27:14 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 20:27:14 +0200 |
commit | e7efce2b405bd312b07a67f3d546201faf9b21dd (patch) | |
tree | 0d028730cb1af8c5b3ba8473b6a60b01267b80c4 | |
parent | Test (diff) | |
download | joe-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-x | update-gitjoe.pl | 6 |
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; |