diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-09 17:00:16 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-09 17:00:16 +0200 |
commit | 1350fe4f91ce7216e1e674437880fceb967a1a62 (patch) | |
tree | d61a0a251b5d63adccbadd750faa085f0fb67040 | |
parent | Trying with <b>authors</b> (diff) | |
download | joe-scripts-1350fe4f91ce7216e1e674437880fceb967a1a62.tar.gz joe-scripts-1350fe4f91ce7216e1e674437880fceb967a1a62.tar.bz2 joe-scripts-1350fe4f91ce7216e1e674437880fceb967a1a62.tar.xz joe-scripts-1350fe4f91ce7216e1e674437880fceb967a1a62.tar.zst joe-scripts-1350fe4f91ce7216e1e674437880fceb967a1a62.zip |
Limit of 200 commits to see if that's faster
-rwxr-xr-x | src/update/gitjoe.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update/gitjoe.pl b/src/update/gitjoe.pl index f2c4950..2655851 100755 --- a/src/update/gitjoe.pl +++ b/src/update/gitjoe.pl @@ -47,7 +47,7 @@ sub stagit_generate { system( '/usr/local/bin/dash', '-c', - '/usr/local/bin/stagit -l 400 ' . $home_dir . $repos[$i] . '/' + '/usr/local/bin/stagit -l 200 ' . $home_dir . $repos[$i] . '/' ); copy('../style.css', './style.css'); copy('../logo.png', './logo.png'); @@ -62,7 +62,7 @@ sub stagit_generate { system( '/usr/local/bin/dash', '-c', - "/usr/bin/sed 's/<td>" . $user . "<\\/td>/<td><b>" . $user . "<\\/b><\\/td>/g' index.html >sedded_index.html" + "/usr/bin/sed 's/<td>" . $user . "<\\/td>/<td class=\"td_author\">" . $user . "<\\/td>/g' index.html >sedded_index.html" ); system( '/usr/local/bin/dash', |