diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-05-02 15:05:27 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-05-02 15:05:27 -0700 |
| commit | 7abc557eb2e89d8bf8e1a5ce6eaa735dd17c9adb (patch) | |
| tree | 474fdb271465063d8dfcf611b47f00a50cf7262a /toolsrc/src/commands_export.cpp | |
| parent | 3b26b6314f8acb4f569163f5cedf17590557a386 (diff) | |
| download | vcpkg-7abc557eb2e89d8bf8e1a5ce6eaa735dd17c9adb.tar.gz vcpkg-7abc557eb2e89d8bf8e1a5ce6eaa735dd17c9adb.zip | |
`export` Fix output directory displayed
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 b936fe88c..3cc0809d5 100644 --- a/toolsrc/src/commands_export.cpp +++ b/toolsrc/src/commands_export.cpp @@ -139,7 +139,7 @@ namespace vcpkg::Commands::Export const int exit_code = System::cmd_execute_clean(cmd_line); Checks::check_exit(VCPKG_LINE_INFO, exit_code == 0, "Error: NuGet package creation failed"); - const fs::path output_path = paths.buildsystems / "tmp" / (nuget_id + ".nupkg"); + const fs::path output_path = output_dir / (nuget_id + ".nupkg"); return output_path; } |
