mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 14:26:07 +00:00
vim-patch:8.0.0810: MS-Windows: tests still hang
Problem: MS-Windows: tests still hang.
Solution: Only create the XfakeHOME directory if it does not exist yet.
d0b6c6c54e
This commit is contained in:
@@ -22,8 +22,10 @@ set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
|
|||||||
let &packpath = &rtp
|
let &packpath = &rtp
|
||||||
|
|
||||||
" Make sure $HOME does not get read or written.
|
" Make sure $HOME does not get read or written.
|
||||||
let $HOME = getcwd() . '/XfakeHOME'
|
let $HOME = expand(getcwd() . '/XfakeHOME')
|
||||||
|
if !isdirectory($HOME)
|
||||||
call mkdir($HOME)
|
call mkdir($HOME)
|
||||||
|
endif
|
||||||
|
|
||||||
" Use default shell on Windows to avoid segfault, caused by TUI
|
" Use default shell on Windows to avoid segfault, caused by TUI
|
||||||
if has('win32')
|
if has('win32')
|
||||||
|
Reference in New Issue
Block a user