summaryrefslogtreecommitdiff
path: root/scripts/cijobs.pl
diff options
context:
space:
mode:
authorMatteo Baccan <matteo.baccan@gmail.com>2022-04-14 13:06:32 +0200
committerDaniel Gustafsson <daniel@yesql.se>2022-04-14 13:55:32 +0200
commit0a6eebfc1435f6e3b37c0081550c7742312831d2 (patch)
treedc07b22fd85a3faac08d490472345494d19cf33f /scripts/cijobs.pl
parentb7c0bd68ffc0778ce0440439ac317da5a0765931 (diff)
downloadcurl-0a6eebfc1435f6e3b37c0081550c7742312831d2.tar.gz
perl: removed a double semicolon at end of line
Remove double semicolons at end of line in Perl code. Closes: #8709 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'scripts/cijobs.pl')
-rwxr-xr-xscripts/cijobs.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/cijobs.pl b/scripts/cijobs.pl
index a262cc232..38189d75a 100755
--- a/scripts/cijobs.pl
+++ b/scripts/cijobs.pl
@@ -248,22 +248,22 @@ sub appveyor {
$job{'config'} = $1;
}
elsif($_ =~ /^ OPENSSL: (.*)/) {
- $job{'openssl'} = $1 eq "ON" ? "true": "false";;
+ $job{'openssl'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ SCHANNEL: (.*)/) {
- $job{'schannel'} = $1 eq "ON" ? "true": "false";;
+ $job{'schannel'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ ENABLE_UNICODE: (.*)/) {
- $job{'unicode'} = $1 eq "ON" ? "true": "false";;
+ $job{'unicode'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ HTTP_ONLY: (.*)/) {
- $job{'http-only'} = $1 eq "ON" ? "true": "false";;
+ $job{'http-only'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ TESTING: (.*)/) {
- $job{'testing'} = $1 eq "ON" ? "true": "false";;
+ $job{'testing'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ SHARED: (.*)/) {
- $job{'shared'} = $1 eq "ON" ? "true": "false";;
+ $job{'shared'} = $1 eq "ON" ? "true": "false";
}
elsif($_ =~ /^ TARGET: \"-A (.*)\"/) {
$job{'target'} = $1;