Fix : Not Working On Windows

* Trailing slash appears to break clone command.
This commit is contained in:
Jeremy Pallats/starcraft.man 2015-12-13 12:38:52 -05:00
parent 87b426e381
commit 7f598e5b58

View file

@ -1305,6 +1305,8 @@ class Plugin(object):
def install(self):
target = self.args['dir']
if target[-1] == '\\':
target = target[0:-1]
def clean(target):
def _clean():