Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix export command usage #1450

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/vcpkg/base/message-data.inc.h
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ DECLARE_MESSAGE(CmdExportEmptyPlan,
DECLARE_MESSAGE(CmdExportExample1,
(),
"This is a command line, only <port names> and the out_dir part should be localized",
"vcpkg export <port names> [--nuget] [--directory=out_dir]")
"vcpkg export <port names> [--nuget] [--output-dir=out_dir]")
DECLARE_MESSAGE(CmdExportOpt7Zip, (), "", "Exports to a 7zip (.7z) file")
DECLARE_MESSAGE(CmdExportOptChocolatey, (), "", "Exports a Chocolatey package (experimental)")
DECLARE_MESSAGE(CmdExportOptDebug, (), "", "Enables prefab debug")
Expand Down
2 changes: 1 addition & 1 deletion locales/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"CmdEnvOptions": "Adds installed {path} to {env_var}",
"_CmdEnvOptions.comment": "An example of {path} is /foo/bar. An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"CmdExportEmptyPlan": "Refusing to create an export of zero packages. Install packages before exporting.",
"CmdExportExample1": "vcpkg export <port names> [--nuget] [--directory=out_dir]",
"CmdExportExample1": "vcpkg export <port names> [--nuget] [--output-dir=out_dir]",
"_CmdExportExample1.comment": "This is a command line, only <port names> and the out_dir part should be localized",
"CmdExportOpt7Zip": "Exports to a 7zip (.7z) file",
"CmdExportOptChocolatey": "Exports a Chocolatey package (experimental)",
Expand Down
Loading