diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-11-03 11:27:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-03 11:27:54 -0700 |
| commit | 862823d8ace26594520dc3035fae3103ad16b48d (patch) | |
| tree | e58362c8a46cbf3edee1b0bcf93d9169fae5c303 | |
| parent | 2feea0828ba94d2a365e8825fe799ed12acc6e6c (diff) | |
| parent | 115cd5f69f1060d3662355a3276948cd77b7fa31 (diff) | |
| download | vcpkg-862823d8ace26594520dc3035fae3103ad16b48d.tar.gz vcpkg-862823d8ace26594520dc3035fae3103ad16b48d.zip | |
Merge pull request #2119 from podsvirov/vcpkg-help-export-ifw
[vcpkg-help-export-ifw] Add settings description
| -rw-r--r-- | toolsrc/src/vcpkg/export.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/toolsrc/src/vcpkg/export.cpp b/toolsrc/src/vcpkg/export.cpp index 625dff8b1..9b86863eb 100644 --- a/toolsrc/src/vcpkg/export.cpp +++ b/toolsrc/src/vcpkg/export.cpp @@ -283,11 +283,11 @@ namespace vcpkg::Export static const std::array<CommandSetting, 7> EXPORT_SETTINGS = {{ {OPTION_NUGET_ID, "Specify the id for the exported NuGet package"}, {OPTION_NUGET_VERSION, "Specify the version for the exported NuGet package"}, - {OPTION_IFW_REPOSITORY_URL, ""}, - {OPTION_IFW_PACKAGES_DIR_PATH, ""}, - {OPTION_IFW_REPOSITORY_DIR_PATH, ""}, - {OPTION_IFW_CONFIG_FILE_PATH, ""}, - {OPTION_IFW_INSTALLER_FILE_PATH, ""}, + {OPTION_IFW_REPOSITORY_URL, "Specify the remote repository URL for the online installer"}, + {OPTION_IFW_PACKAGES_DIR_PATH, "Specify the temporary directory path for the repacked packages"}, + {OPTION_IFW_REPOSITORY_DIR_PATH, "Specify the directory path for the exported repository"}, + {OPTION_IFW_CONFIG_FILE_PATH, "Specify the temporary file path for the installer configuration"}, + {OPTION_IFW_INSTALLER_FILE_PATH, "Specify the file path for the exported installer"}, }}; const CommandStructure vcpkg::Export::COMMAND_STRUCTURE = { |
