https://bugs.winehq.org/show_bug.cgi?id=48940
Bug ID: 48940 Summary: The 'winepath' component from windows to linux returns string with a carriage return (0x0D). Product: Wine-staging Version: 5.6 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: sohatok@yandex.ru CC: leslie_alistair@hotmail.com, z.figura12@gmail.com Distribution: ---
Hello.
The winepath component from windows to linux returns a string with a carriage return (0x0D). In particular, when installing dxvk (ver. 1.6) win64_sys_path=$($wine64 winepath -u 'C:\windows\system32' | 2> /dev/null) returns: /home/alex/.wine/dosdevices/c:/windows/system32 + '0x0D' the next option returns the normal path win64_sys_path=$($wine64 winepath -u 'C:\windows\system32' | tr -d '\r' 2> /dev/null)