From 41bc918382b36250ed2222f3850485d82a23e73d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 18 Nov 2014 14:55:35 +0100 Subject: [PATCH] Fix robots.txt --- src/lib/Hydra/Controller/Root.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/Hydra/Controller/Root.pm b/src/lib/Hydra/Controller/Root.pm index b104121f..13f8f2e4 100644 --- a/src/lib/Hydra/Controller/Root.pm +++ b/src/lib/Hydra/Controller/Root.pm @@ -162,7 +162,8 @@ sub robots_txt : Path('robots.txt') { # robots.txt. Note: wildcards are not universally supported in # robots.txt, but apparently Google supports them. my @rules = - ( uri_for($c, 'Build', 'deps', ["*"]) + ( uri_for($c, 'Build', 'build_deps', ["*"]) + , uri_for($c, 'Build', 'runtime_deps', ["*"]) , uri_for($c, 'Build', 'view_nixlog', ["*"], "*") , uri_for($c, 'Build', 'view_log', ["*"], "*") , uri_for($c, 'Build', 'view_log', ["*"])