diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 20:29:36 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 20:29:36 +0200 |
commit | 044f3ccc9edc1ba5c2853cfd929583db602bb444 (patch) | |
tree | bc5e394e519c9608d82fd5121d6a75bbc971bbe2 | |
parent | Cleaner (diff) | |
download | joe-scripts-044f3ccc9edc1ba5c2853cfd929583db602bb444.tar.gz joe-scripts-044f3ccc9edc1ba5c2853cfd929583db602bb444.tar.bz2 joe-scripts-044f3ccc9edc1ba5c2853cfd929583db602bb444.tar.xz joe-scripts-044f3ccc9edc1ba5c2853cfd929583db602bb444.tar.zst joe-scripts-044f3ccc9edc1ba5c2853cfd929583db602bb444.zip |
Even cleaner
-rwxr-xr-x | src/cron/gitjoe.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cron/gitjoe.pl b/src/cron/gitjoe.pl index 87d95a2..f3b85a4 100755 --- a/src/cron/gitjoe.pl +++ b/src/cron/gitjoe.pl @@ -25,8 +25,8 @@ sub get_repos_index { $i += 1; } closedir(DIR); - my @sorted_repos = sort @repos; - return @sorted_repos; + @repos = sort @repos; + return @repos; } sub stagit_generate { |