-
Notifications
You must be signed in to change notification settings - Fork 315
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
[hab] Support multiple args on pkg install
& artifact upload
.
#576
Merged
thesentinels
merged 1 commit into
master
from
fnichol/hab-multiple-args-on-install-and-upload
May 27, 2016
Merged
[hab] Support multiple args on pkg install
& artifact upload
.
#576
thesentinels
merged 1 commit into
master
from
fnichol/hab-multiple-args-on-install-and-upload
May 27, 2016
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This feature is in line with the behavior of other package managers, that is: > As a user, I want to install multiple packages with one command line > invocation like `apt-get install redis-server git-core sudo`. With this change, multiple arguments are accepted on the `hab pkg install` and `hab artifact upload` subcommands. Remembering that it is (in general) your shell that unrolls file globs before passing the argments to the process, we can now have highly desirable workflows such as: hab pkg install ./results/*.hart hab artifact upload ./results/*.hart The `pkg install` subcommand in particular treats each argument as an artifact-or-pkg-ident, meaning you can mix and match local arifacts with published packages, as in: hab pkg install ./results/*.hart core/hab-sup Signed-off-by: Fletcher Nichol <[email protected]>
nice touch! |
📌 Commit 7a17ed3 has been approved by |
thesentinels
pushed a commit
that referenced
this pull request
May 27, 2016
This feature is in line with the behavior of other package managers, that is: > As a user, I want to install multiple packages with one command line > invocation like `apt-get install redis-server git-core sudo`. With this change, multiple arguments are accepted on the `hab pkg install` and `hab artifact upload` subcommands. Remembering that it is (in general) your shell that unrolls file globs before passing the argments to the process, we can now have highly desirable workflows such as: hab pkg install ./results/*.hart hab artifact upload ./results/*.hart The `pkg install` subcommand in particular treats each argument as an artifact-or-pkg-ident, meaning you can mix and match local arifacts with published packages, as in: hab pkg install ./results/*.hart core/hab-sup Signed-off-by: Fletcher Nichol <[email protected]> Pull request: #576 Approved by: metadave
☀️ Test successful - travis |
jtimberman
pushed a commit
that referenced
this pull request
Jun 12, 2016
This feature is in line with the behavior of other package managers, that is: > As a user, I want to install multiple packages with one command line > invocation like `apt-get install redis-server git-core sudo`. With this change, multiple arguments are accepted on the `hab pkg install` and `hab artifact upload` subcommands. Remembering that it is (in general) your shell that unrolls file globs before passing the argments to the process, we can now have highly desirable workflows such as: hab pkg install ./results/*.hart hab artifact upload ./results/*.hart The `pkg install` subcommand in particular treats each argument as an artifact-or-pkg-ident, meaning you can mix and match local arifacts with published packages, as in: hab pkg install ./results/*.hart core/hab-sup Signed-off-by: Fletcher Nichol <[email protected]> Pull request: #576 Approved by: metadave
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This feature is in line with the behavior of other package managers, that is:
With this change, multiple arguments are accepted on the
hab pkg install
andhab artifact upload
subcommands. Remembering that it is (in general) your shell that unrolls file globs before passing theargments to the process, we can now have highly desirable workflows such as:
The
pkg install
subcommand in particular treats each argument as an artifact-or-pkg-ident, meaning you can mix and match local arifacts with published packages, as in: