summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2023-01-25 15:30:59 -0800
committerDan Fandrich <dan@coneharvesters.com>2023-01-25 15:31:45 -0800
commit8dceb7bfcdd3d8992fc13dbbfebfe0a6e11d755b (patch)
tree3ab751af658182e2db4a659618b2822c2855d057 /scripts
parent54189d8b81a5a80f962573b63297fad12192354b (diff)
downloadcurl-8dceb7bfcdd3d8992fc13dbbfebfe0a6e11d755b.tar.gz
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.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cijobs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cijobs.pl b/scripts/cijobs.pl
index ef0c0808c..21c750d6d 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: (.*)/) {