diff options
-rwxr-xr-x | src/update/gitjoe.pl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/update/gitjoe.pl b/src/update/gitjoe.pl index 2261154..d57672e 100755 --- a/src/update/gitjoe.pl +++ b/src/update/gitjoe.pl @@ -62,9 +62,14 @@ sub stagit_generate { system( '/usr/local/bin/dash', '-c', - "sed 's/log.html/files.html/g' index.html >sedded_index.html" + "sed 's/<td>" . $user . "<\\/td>/<td class=\"td_author\">" . $user . "<\\/td>/g' index.html >sedded_index.html" ); - copy('./sedded_index.html', './index.html'); + system( + '/usr/local/bin/dash', + '-c', + "sed 's/log.html/files.html/g' sedded_index.html >index.html" + ); + # copy('./sedded_index.html', './index.html'); unlink('./sedded_index.html'); return; } |