From: Dan Fandrich Date: Wed, 25 Jan 2023 23:30:59 +0000 (-0800) Subject: scripts: Fix Appveyor job detection in cijobs.pl X-Git-Tag: curl-7_88_0~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8dceb7bfcdd3d8992fc13dbbfebfe0a6e11d755b;p=thirdparty%2Fcurl.git 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. --- 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: (.*)/) {