shama / napa

:wine_glass: A helper for installing stuff without a package.json with npm.
MIT License
412 stars 34 forks source link

Reopening Issue #8 ERR Cloning... #10

Closed sterpe closed 10 years ago

sterpe commented 10 years ago

@shama

Seems like this is related to new git 1.8.5.2 & 1.9.0.

Upgraded my git to 1.8.5.2 or/ 1.9.0 caused napa to start erroring. Everything 'seems' fine with the clone though.

Reverting back to 1.8.3.4 fixes it.

My package.json

....

  "napa": {                                                                    
    "angular": "angular/bower-angular",                                        
    "angular-route": "angular/bower-angular-route"                             
  }, 
  ...etc.              
shama commented 10 years ago

It looks like for some reason git outputs Cloning into... on stderr with later versions of git (thanks for identifying the problem!)

I have it now running with -q to quiet it, except for actual errors.

sterpe commented 10 years ago

Nice.