t9001: PATH must not use Windows-style paths
commitf6a5af0f6218e82d18d79053ef49ea1c696cf167
authorJohannes Sixt <j6t@kdbg.org>
Tue, 24 Aug 2021 18:01:29 +0000 (24 20:01 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 Aug 2021 21:13:45 +0000 (24 14:13 -0700)
treecf2eb047c88de2727e71269216f4291a9465a100
parentcd5b33fbdc0299765278d0b607b64202603f0882
t9001: PATH must not use Windows-style paths

On Windows, $(pwd) returns a drive-letter style path C:/foo, while $PWD
contains a POSIX style /c/foo path. When we want to interpolate the
current directory in the PATH variable, we must not use the C:/foo style,
because the meaning of the colon is ambiguous. Use the POSIX style.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9001-send-email.sh