Coder Social home page Coder Social logo

Comments (5)

vszakats avatar vszakats commented on June 19, 2024

Indeed, I also noticed it, but the linked file is the correct one.

Assuming this was something transient, I'm pushing a revision trying to fix this.

from curl-for-win.

simon04 avatar simon04 commented on June 19, 2024

Thank you for the instant fix! 😄

from curl-for-win.

vszakats avatar vszakats commented on June 19, 2024

You're welcome! But, it didn't fix it; now the 32-bit version appears as zero size. Can't readily see what may be the problem...

One thing definitely changed in curl-for-win with 7.73.0_3: Now each .zip and .tar.xz file comes with a GPG signature with a .asc suffix in their filenames.

If the logic accidentally picks the .asc file instead of the archive, it may result in a zero size when rounded to MB.

So perhaps this is the fix:

diff --git a/windows/mkfiles.pl b/windows/mkfiles.pl
index 1dbece7..db2194f 100755
--- a/windows/mkfiles.pl
+++ b/windows/mkfiles.pl
@@ -95,7 +95,7 @@ my $dl = latest();
 my @files = getdl($dl);
 for(@files) {
     my $file = $_;
-    if($file =~ /^curl-([0-9.]*(|_[0-9]*))-(\S+)-(\S+)\.(zip)/) {
+    if($file =~ /^curl-([0-9.]*(|_[0-9]*))-(\S+)-(\S+)\.(zip)$/) {
         my ($version, $arch, $env, $ext)=($1, $3, $4, $5);
         $exts{$version}.="$ext,";
         $archs{$version.$ext}.="$arch,";

from curl-for-win.

vszakats avatar vszakats commented on June 19, 2024

It looks like the fix worked for the latest pushed revision. Closing this for now. Thanks for the report!

from curl-for-win.

bagder avatar bagder commented on June 19, 2024

🎉

from curl-for-win.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.