[web] master update

Matt Caswell matt at openssl.org
Mon Apr 13 09:12:28 UTC 2020


The branch master has been updated
       via  0ad7d3cbd190744b43db3517d8470b3bc5a09b20 (commit)
      from  edaff9123a6cb70d686b93455572f9cf313563d5 (commit)


- Log -----------------------------------------------------------------
commit 0ad7d3cbd190744b43db3517d8470b3bc5a09b20
Author: Matt Caswell <matt at openssl.org>
Date:   Sat Apr 11 19:34:21 2020 +0100

    Don't die if we only have one tarball
    
    mk-latest incorrectly dies if there is only one tarball. The value of
    $#tarballs is 0 if there is 1 tarball.
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (Merged from https://github.com/openssl/web/pull/170)

-----------------------------------------------------------------------

Summary of changes:
 bin/mk-latest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/bin/mk-latest b/bin/mk-latest
index 37423cd..aa4432a 100755
--- a/bin/mk-latest
+++ b/bin/mk-latest
@@ -9,7 +9,6 @@ chdir $SRCDIR || die "Can't chdir $SRCDIR, $!";
 my @tarballs =
        sort grep /openssl-\d+\.\d+\.\d+[a-z]*\.tar\.gz$/,
                glob("openssl-*.tar.gz");
-die "No tgz files found in $SRCDIR?\n" if $#tarballs < 1;
 
 my %series = ();
 foreach(@tarballs) {


More information about the openssl-commits mailing list