From 0f8d02894a6a1d4297dbfdcfae2216b274b39b4c Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 19 Oct 2021 21:51:25 -0400 Subject: [PATCH] hydra-eval-jobset: Scalar value @declInputs[0] better written as $declInputs[0] at hydra-eval-jobset line 570. --- src/script/hydra-eval-jobset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/hydra-eval-jobset b/src/script/hydra-eval-jobset index 4a165d86..7a9af09f 100755 --- a/src/script/hydra-eval-jobset +++ b/src/script/hydra-eval-jobset @@ -567,7 +567,7 @@ sub checkJobsetWrapped { my $inputInfo = {}; if ($jobsetsJobset) { my @declInputs = fetchInput($plugins, $db, $project, $jobset, "decl", $project->decltype, $project->declvalue, 0); - my $declInput = @declInputs[0] or die "cannot find the input containing the declarative project specification\n"; + my $declInput = $declInputs[0] or die "cannot find the input containing the declarative project specification\n"; die "multiple alternatives for the input containing the declarative project specification are not supported\n" if scalar @declInputs != 1; my $declFile = $declInput->{storePath} . "/" . $project->declfile;