Merge pull request #354 from starcraftman/trail_slash
Fix #353: Not Working On Windows
This commit is contained in:
commit
b836656556
1 changed files with 2 additions and 0 deletions
2
plug.vim
2
plug.vim
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue