From 7f598e5b58dbbc9151be2535d49bcc1b9698bb4e Mon Sep 17 00:00:00 2001 From: "Jeremy Pallats/starcraft.man" Date: Sun, 13 Dec 2015 12:38:52 -0500 Subject: [PATCH] Fix #353: Not Working On Windows * Trailing slash appears to break clone command. --- plug.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plug.vim b/plug.vim index 2969692..b0b8106 100644 --- a/plug.vim +++ b/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():