More command renaming.

This commit is contained in:
Ludovic Courtès
2011-12-02 15:58:26 +01:00
parent 98255e84e6
commit 6c4e83d454
4 changed files with 6 additions and 6 deletions

View File

@ -365,7 +365,7 @@ sub force_eval : Chained('admin') Path('eval') Args(2) {
$c->stash->{jobset} = $c->stash->{jobset_}->single
or notFound($c, "Jobset $jobsetName doesn't exist.");
(my $res, my $stdout, my $stderr) = captureStdoutStderr(60, ("hydra_evaluator.pl", $projectName, $jobsetName));
(my $res, my $stdout, my $stderr) = captureStdoutStderr(60, ("hydra-evaluator", $projectName, $jobsetName));
$c->res->redirect("/project/$projectName");
}