aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <webmaster@macside.net>2020-09-11 20:17:47 +0000
committerGitHub <noreply@github.com>2020-09-11 13:17:47 -0700
commite8790f0f1aaf7f9e450e131c9adfeb79fe6f67ea (patch)
treef0ecef6de9edc88f76927a5a077bc680d9539406
parent28a5bd79ef600d50b01513a3d8ba4d0919515929 (diff)
downloadvcpkg-e8790f0f1aaf7f9e450e131c9adfeb79fe6f67ea.tar.gz
vcpkg-e8790f0f1aaf7f9e450e131c9adfeb79fe6f67ea.zip
[vcpkg] Fix issue #12745. (#12746)
-rw-r--r--toolsrc/src/vcpkg/base/files.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/toolsrc/src/vcpkg/base/files.cpp b/toolsrc/src/vcpkg/base/files.cpp
index 42efd473f..3b84ee189 100644
--- a/toolsrc/src/vcpkg/base/files.cpp
+++ b/toolsrc/src/vcpkg/base/files.cpp
@@ -482,6 +482,7 @@ namespace vcpkg::Files
std::fstream file_stream(file_path, std::ios_base::in | std::ios_base::binary);
if (file_stream.fail())
{
+ Debug::print("Missing path: ", file_path.u8string(), '\n');
return std::make_error_code(std::errc::no_such_file_or_directory);
}