-
Notifications
You must be signed in to change notification settings - Fork 296
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
implement vcpkg add port #301
implement vcpkg add port #301
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than localization (and the else if) looks really good to me!
LGTM! I just want @ras0219-msft to take a look first, so we'll finish taking a look in the new year. |
660938a
to
773792e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, thanks for beating me to the punch!
Co-authored-by: Robert Schumacher <[email protected]>
Thank you so much for this new feature! :D |
microsoft#301 broke add artifact by flipping the sense of check_exit: it is "ensure that this is true" not "fail when this is true". Drivebys: `add port` was also broken because it would try to add a port named "port". 60: Fix the flipped sense. 78: Replace fmap with a for loop starting at 1 to skip the selector. 80: Use Expected::value_or_exit which was equivalent to the previous behavior of printing the message followed by exit_fail. 84: Similarly combine printing msgAddTripletExpressionNotAllowed and exit_failure into msg_exit_with_message. 126: Similarly, write_contents' default behavior of exiting and printing the path in question with VCPKG_LINE_INFO was equivalent to checking error_code
…#415) * Fix add artifact regression "you can only add one artifact at a time" #301 broke add artifact by flipping the sense of check_exit: it is "ensure that this is true" not "fail when this is true". Drivebys: `add port` was also broken because it would try to add a port named "port". 60: Fix the flipped sense. 78: Replace fmap with a for loop starting at 1 to skip the selector. 80: Use Expected::value_or_exit which was equivalent to the previous behavior of printing the message followed by exit_fail. 84: Similarly combine printing msgAddTripletExpressionNotAllowed and exit_failure into msg_exit_with_message. 126: Similarly, write_contents' default behavior of exiting and printing the path in question with VCPKG_LINE_INFO was equivalent to checking error_code * Regenerate localization.
No description provided.