From 2660c3cc54e75938da1c8785a079273f1e684775 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 28 Nov 2017 17:16:21 +0100 Subject: [PATCH] Remove redundant check --- src/script/hydra-eval-jobset | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/script/hydra-eval-jobset b/src/script/hydra-eval-jobset index 075def49..6aaf652a 100755 --- a/src/script/hydra-eval-jobset +++ b/src/script/hydra-eval-jobset @@ -356,8 +356,6 @@ sub evalJobs { my $nixExprInput = $inputInfo->{$nixExprInputName}->[0] or die "cannot find the input containing the job expression\n"; - die "multiple alternatives for the input containing the Nix expression are not supported.\n" - if scalar @{$inputInfo->{$nixExprInputName}} != 1; my $evaluator = ($exprType eq "guile") ? "hydra-eval-guile-jobs" : "hydra-eval-jobs";