albertinad / brackets-bower

Bower integration in Brackets.
MIT License
47 stars 9 forks source link

Warn user if git isn't installed #6

Closed njx closed 9 years ago

njx commented 10 years ago

It looks like Bower requires git to be installed in order to install some (many?) packages. I added notes to the README and package description, but it would be good to actually detect this in the extension itself and warn the user if they try to install a package that requires git.

albertinad commented 9 years ago

Hi @njx ! I implemented this validation when the extension initializes. It checks if Git is found at the system PATH, if not, it shows a warning message to the user. The implementation is already at the master branch and will be available in the next release. Feel free to take a look at it :)

I'm closing this issue.

njx commented 9 years ago

Sounds good, thanks.