Skip to content

Commit

Permalink
fix(tests): only create ~/.vim dir on non-windows systems
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 30, 2020
1 parent 7be6a45 commit 206a584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ if !has('patch-8.1.201')
silent! python3 1
endif

if !exists(expand('~/.vim/'))
if !exists(expand('~/.vim/')) && !has('win32')
call mkdir(expand('~/.vim/'), 'p')
endif

0 comments on commit 206a584

Please sign in to comment.