mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 02:57:09 +01:00
convert path to string
This commit is contained in:
parent
67a749b989
commit
f81aa47176
@ -175,9 +175,9 @@ namespace vcpkg
|
||||
out_str.append(Strings::join(",",
|
||||
Util::fmap(
|
||||
pgh.external_files,
|
||||
[](const std::pair<std::string, std::string>& kv)
|
||||
[](const std::pair<fs::path, std::string>& kv)
|
||||
{
|
||||
return kv.first + "," + kv.second;
|
||||
return kv.first.u8string() + "," + kv.second;
|
||||
}))).push_back('\n');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user