scalar (Windows): use forward slashes as directory separators

Git traditionally uses those, not backslashes, ever.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2022-05-10 13:43:05 +02:00 коммит произвёл Victoria Dye
Родитель 9acf70cb0f
Коммит 6ceb12cf1d
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -44,6 +44,9 @@ static void setup_enlistment_directory(int argc, const char **argv,
die(_("need a working directory"));
strbuf_trim_trailing_dir_sep(&path);
#ifdef GIT_WINDOWS_NATIVE
convert_slashes(path.buf);
#endif
/* check if currently in enlistment root with src/ workdir */
len = path.len;