aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_create.cpp
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2016-09-23 12:19:57 -0700
committerRobert Schumacher <roschuma@microsoft.com>2016-09-23 12:19:57 -0700
commitddd0f88579eb1adff0dd8b14458c4bf70eaa902d (patch)
tree71f299f461d4c726a5cf49a535b42898149caccc /toolsrc/src/commands_create.cpp
parentb2f6a769ea015f49c7061e36c8c7125dd53ca01e (diff)
parent082eb3680e4a6ea0cd50001683c2e37c1693cc4b (diff)
downloadvcpkg-ddd0f88579eb1adff0dd8b14458c4bf70eaa902d.tar.gz
vcpkg-ddd0f88579eb1adff0dd8b14458c4bf70eaa902d.zip
Merged alzie:default_triplet for PR #70
Diffstat (limited to 'toolsrc/src/commands_create.cpp')
-rw-r--r--toolsrc/src/commands_create.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_create.cpp b/toolsrc/src/commands_create.cpp
index 73d163af8..8ae67b799 100644
--- a/toolsrc/src/commands_create.cpp
+++ b/toolsrc/src/commands_create.cpp
@@ -7,7 +7,7 @@ namespace vcpkg
void create_command(const vcpkg_cmd_arguments& args, const vcpkg_paths& paths, const triplet& default_target_triplet)
{
args.check_max_args(3);
- package_spec spec = args.parse_all_arguments_as_package_specs(default_target_triplet).at(0);
+ package_spec spec = args.parse_all_arguments_as_package_specs(paths, default_target_triplet).at(0);
if (args.command_arguments.size() < 2)
{
System::println(System::color::error, "Error: create requires the archive's URL as the second argument.");