diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-04 23:02:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-04 23:02:16 +0300 |
commit | 29525682b9c3e1db59b095bb389235e48629cd44 (patch) | |
tree | ac859177c144e1db46b86d98893d72a31750f658 /tools/build_scripts | |
parent | 46fa8c36208281ab2ca0b35d9df966d1b836c592 (diff) |
fixme.cmd: fix for long folder names
Diffstat (limited to 'tools/build_scripts')
-rw-r--r-- | tools/build_scripts/fixme.cmd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_scripts/fixme.cmd b/tools/build_scripts/fixme.cmd index 5a4528d29a..853815fcdb 100644 --- a/tools/build_scripts/fixme.cmd +++ b/tools/build_scripts/fixme.cmd @@ -6,7 +6,7 @@ if "%1" == "" ( pushd %~dp0Profiles for /D %%i in (*) do ( - if exist %~dp0Profiles\%%i\%%i.dat ( + if exist "%~dp0Profiles\%%i\%%i.dat" ( set ProfileName=%%i set /A ProfileCount=%ProfileCount%+1 ) @@ -15,7 +15,7 @@ if "%1" == "" ( popd ) else ( - if not exist %~dp0Profiles\%1\%1.dat ( + if not exist "%~dp0Profiles\%1\%1.dat" ( echo Wrong profile name specified: %1 goto :eof ) |