diff options
| -rw-r--r-- | toolsrc/src/vcpkg_paths.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg_paths.cpp b/toolsrc/src/vcpkg_paths.cpp index dcc010cd0..f339be47a 100644 --- a/toolsrc/src/vcpkg_paths.cpp +++ b/toolsrc/src/vcpkg_paths.cpp @@ -81,7 +81,7 @@ namespace vcpkg exit(rc.exit_code); } - const fs::path actual_downloaded_path = rc.output; + const fs::path actual_downloaded_path = Strings::trimmed(rc.output); Checks::check_exit(VCPKG_LINE_INFO, expected_downloaded_path == actual_downloaded_path, "Expected dependency downloaded path to be %s, but was %s", expected_downloaded_path.generic_string(), actual_downloaded_path.generic_string()); return actual_downloaded_path; |
