diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-20 18:08:51 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-20 18:08:51 -0700 |
| commit | 14a7a7ef632ba4a4d65ebb89d8a7b61f73954316 (patch) | |
| tree | 9e5d715163091036b76ead65ab5ed568b3e30207 /toolsrc/src/commands_other.cpp | |
| parent | bcfe15ce2b29a2a31c9166bb2ee151582122d9c4 (diff) | |
| parent | e118c157198ee4218492cafb7ef3aaa1e3442c78 (diff) | |
| download | vcpkg-14a7a7ef632ba4a4d65ebb89d8a7b61f73954316.tar.gz vcpkg-14a7a7ef632ba4a4d65ebb89d8a7b61f73954316.zip | |
Merge branch 'sdcb-hash'
Diffstat (limited to 'toolsrc/src/commands_other.cpp')
| -rw-r--r-- | toolsrc/src/commands_other.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolsrc/src/commands_other.cpp b/toolsrc/src/commands_other.cpp index 07549a437..148673afe 100644 --- a/toolsrc/src/commands_other.cpp +++ b/toolsrc/src/commands_other.cpp @@ -14,6 +14,7 @@ namespace vcpkg " vcpkg remove --purge <pkg> Uninstall and delete a package. \n" " vcpkg list List installed packages\n" " vcpkg update Display list of packages for updating\n" + " vcpkg hash <file> [alg] Hash a file by specific algorithm, default SHA512\n" "\n" "%s" // Integration help "\n" @@ -93,7 +94,8 @@ namespace vcpkg { static std::vector<package_name_and_function<command_type_c>> t = { {"version", &version_command}, - {"contact", &contact_command} + {"contact", &contact_command}, + {"hash", &hash_command}, }; return t; } |
