From 8dceb7bfcdd3d8992fc13dbbfebfe0a6e11d755b Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 25 Jan 2023 15:30:59 -0800 Subject: [PATCH] scripts: Fix Appveyor job detection in cijobs.pl The reorganization in #9769 broke the script. This should probably be rewritten to use a YAML parser for better upward compatibility. --- scripts/cijobs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cijobs.pl b/scripts/cijobs.pl index ef0c0808c6..21c750d6d4 100755 --- a/scripts/cijobs.pl +++ b/scripts/cijobs.pl @@ -237,7 +237,7 @@ sub appveyor { } } $job{'line'} = $line; - if($_ =~ /^ - APPVEYOR_BUILD_WORKER_IMAGE: \"(.*)\"/) { + if($_ =~ /^ APPVEYOR_BUILD_WORKER_IMAGE: \"(.*)\"/) { $job{'image'}= $1; } elsif($_ =~ /^ BUILD_SYSTEM: (.*)/) { -- 2.47.3