Coder Social home page Coder Social logo

Comments (2)

alrra avatar alrra commented on June 28, 2024

It's because of

options.splitLast ? '--splitlast' : '',

which, when splitLast is undefined, will generate something like

zopfli '-c' '--i25' '--deflate' '' 'tests/fixtures/benchmark.js'

that, when executed, will give you

Invalid filename: 

due to the '' argument.

So, add only "real" options as arguments.


Try something like:

var zopfli = function(filePath, options, callback) {      

    var args = [                                                                 
        '-c',                                                                    
        '--i' + options.iterations,                                              
        options.format == 'gzip' ? '--gzip'                                      
            : options.format == 'deflate' ? '--deflate'                          
                : '--zlib',                                                      
        filePath                                                                 
    ];                                                                           

    if ( options.splitLast ) {                                                   
        args.push('--splitlast');                                            
    };                                                                           

    execFile('zopfli', args, function(error, stdout, stderr) {                         
        callback.call(this, error || stderr, stdout);                            
    });                                                                          
};     

from grunt-zopfli.

mathiasbynens avatar mathiasbynens commented on June 28, 2024

Weird, you’re absolutely correct that this was the issue — thanks! — but test-1 and test-2 were working fine and they had splitLast: false too.

To debug this, I was trying to find a way to get execFile to log the full command before executing it or something (I assumed it wasn’t quoting the arguments but rather escaping special characters as needed), but it seems impossible without using strace / dtruss :(

Anyhow, it’s fixed now. Thanks!

from grunt-zopfli.

Related Issues (10)

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.