Module: tools Branch: master Commit: bbc9f8f9d88f7ceaef3e401d27511ad65a3df170 URL: http://source.winehq.org/git/tools.git/?a=commit;h=bbc9f8f9d88f7ceaef3e401d2... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Sep 16 23:23:58 2008 +0200 winetest: Add a link to the latest winetest.exe. --- winetest/build-index | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/winetest/build-index b/winetest/build-index index 50d8b12..e282277 100755 --- a/winetest/build-index +++ b/winetest/build-index @@ -266,7 +266,15 @@ foreach my $build (@builds) if ($build->{subj}) { printf OUT "<a href=\"$gitweb?a=shortlog;h=%s\">%s</a>", $build->{name}, escapeHTML($build->{subj}); } print OUT "</td></tr>\n"; } -print OUT "</table>\n</body></html>\n"; + +print OUT <<"EOF"; +</table></div> +<div class="navbar"> +To run the tests on your Windows machine, download the <a href="http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt/winetest-latest.exe">latest winetest.exe</a> build. +</div> +</body></html> +EOF + close OUT; rename "data/index.html.new", "data/index.html" or unlink "data/index.html.new";