aboutsummaryrefslogtreecommitdiffstats
path: root/src/update/gitjoe.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/update/gitjoe.pl')
-rwxr-xr-xsrc/update/gitjoe.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update/gitjoe.pl b/src/update/gitjoe.pl
index 4021abd..f2c4950 100755
--- a/src/update/gitjoe.pl
+++ b/src/update/gitjoe.pl
@@ -49,7 +49,6 @@ sub stagit_generate {
'-c',
'/usr/local/bin/stagit -l 400 ' . $home_dir . $repos[$i] . '/'
);
- print "repoed\n";
copy('../style.css', './style.css');
copy('../logo.png', './logo.png');
$i += 1;
@@ -63,7 +62,7 @@ sub stagit_generate {
system(
'/usr/local/bin/dash',
'-c',
- "/usr/bin/sed 's/<td>" . $user . "<\\/td>/<td class=\"td_author\">" . $user . "<\\/td>/g' index.html >sedded_index.html"
+ "/usr/bin/sed 's/<td>" . $user . "<\\/td>/<td><b>" . $user . "<\\/b><\\/td>/g' index.html >sedded_index.html"
);
system(
'/usr/local/bin/dash',
@@ -93,6 +92,7 @@ sub main {
stagit_generate($users[$i], @repos);
$i += 1;
}
+ print "Updated GitJoe index.\n";
exit;
}