diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-19 16:48:26 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-21 18:06:52 -0700 |
| commit | de3eda6546b97d0d0d11308a36d2adcb27224037 (patch) | |
| tree | 01add7f1b8d81b76edf2cc2669ca8de5ebeeb104 /toolsrc/src/commands_export.cpp | |
| parent | 9dda4e48aee9ef1ead865e9b45c33efba89a3fde (diff) | |
| download | vcpkg-de3eda6546b97d0d0d11308a36d2adcb27224037.tar.gz vcpkg-de3eda6546b97d0d0d11308a36d2adcb27224037.zip | |
`export`: Place files in "installed" subdir
Diffstat (limited to 'toolsrc/src/commands_export.cpp')
| -rw-r--r-- | toolsrc/src/commands_export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_export.cpp b/toolsrc/src/commands_export.cpp index 0cac73f19..5348ba847 100644 --- a/toolsrc/src/commands_export.cpp +++ b/toolsrc/src/commands_export.cpp @@ -119,7 +119,7 @@ namespace vcpkg::Commands::Export const InstallDir dirs = InstallDir::from_destination_root( output, action.spec.triplet().to_string(), - output / "vcpkg" / "info" / (binary_paragraph.fullstem() + ".list")); + output / "installed" / "vcpkg" / "info" / (binary_paragraph.fullstem() + ".list")); Install::install_files_and_write_listfile(paths.get_filesystem(), paths.package_dir(action.spec), dirs); System::println(System::Color::success, "Exporting package %s... done", display_name); |
