From 125cf1dc5b0c2996f141704c6f5ce8396f5c316d Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Tue, 27 Jul 2010 16:09:35 +0000 Subject: [PATCH] missing case for hg input type --- src/lib/Hydra/Controller/Jobset.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Hydra/Controller/Jobset.pm b/src/lib/Hydra/Controller/Jobset.pm index 5d82ec3b..c5ecb94e 100644 --- a/src/lib/Hydra/Controller/Jobset.pm +++ b/src/lib/Hydra/Controller/Jobset.pm @@ -198,7 +198,7 @@ sub checkInput { my $inputType = trim $c->request->params->{"input-$baseName-type"}; error($c, "Invalid input type: $inputType") unless - $inputType eq "svn" || $inputType eq "svn-checkout" || $inputType eq "cvs" || $inputType eq "tarball" || + $inputType eq "svn" || $inputType eq "svn-checkout" || $inputType eq "hg" || $inputType eq "tarball" || $inputType eq "string" || $inputType eq "path" || $inputType eq "boolean" || $inputType eq "git" || $inputType eq "build" || $inputType eq "sysbuild" ;