jrnewell / goog-webfont-dl

A utility to download google webfonts to your local machine
MIT License
75 stars 17 forks source link

Added option for destination directory #3

Closed michael-k closed 9 years ago

michael-k commented 9 years ago

fs.mkdir fails for -d "", so I added "." + path.sep to commander.destination instead of repeating it over and over.

jrnewell commented 9 years ago

Thank you for the contribution. I think I am going to remove the "." + path.sep from your commit so users can also enter absolute paths too.

michael-k commented 9 years ago

:+1: path.normalize() makes -d "" possible in a much better way.