From 4ef824cf7542288236e939fd89b846561ddd2f19 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 16 May 2011 19:18:52 -0500 Subject: [PATCH] fix dirname/ --- test/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/vimrc b/test/vimrc index 065dc02..de6fc82 100644 --- a/test/vimrc +++ b/test/vimrc @@ -53,7 +53,7 @@ BundleInstall func! s:assert_bundles() abort for b in g:bundles - if (!isdirectory(b.path().'/.git')) + if (!isdirectory(b.path().'/.git/')) throw b.name.' not installed' endif endfor