jacogr / atom-git-control

Not maintained :(
MIT License
227 stars 70 forks source link

Undefined project name in project selection #189

Closed antoine-brezillon closed 8 years ago

antoine-brezillon commented 8 years ago

Due to the windows path with '\' project-dialog.coffee cannot parse the name of the repo line 32. option.text = repo.path.split('/').reverse()[1]

for other windows users, as a temporary solution, replace it with this, works fine option.text = repo.path.split('\\').reverse()[1]