patch 8.2.3441: MS-Windows: vimtutor can't handle path with spaces

Problem:    MS-Windows: vimtutor can't handle path with spaces.
Solution:   Add double quotes. (Christian Brabandt, closes #8871)
This commit is contained in:
Christian Brabandt 2021-09-15 12:53:40 +02:00 committed by Bram Moolenaar
parent f2a8bafa4b
commit ee2cbcd99c
2 changed files with 3 additions and 1 deletions

View File

@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3441,
/**/
3440,
/**/

View File

@ -11,7 +11,7 @@
:: Use Vim to copy the tutor, it knows the value of $VIMRUNTIME
FOR %%d in (. %TMP% %TEMP%) DO (
call :test_dir_writable %~dpf0 %%d
call :test_dir_writable "%~dpf0" %%d
IF NOT ERRORLEVEL 1 GOTO dir_ok
)