diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/mk-ca-bundle.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index 8d770e8a5..0b1331840 100755 --- a/lib/mk-ca-bundle.pl +++ b/lib/mk-ca-bundle.pl @@ -324,7 +324,7 @@ if(!$filedate) { # get the hash from the download file my $newsha1= sha1($txt); -if($oldsha1 eq $newsha1) { +if(!$opt_f && $oldsha1 eq $newsha1) { print STDERR "Downloaded file identical to previous run\'s source file. Exiting\n"; exit; } |