Add brew command to aid creating homebrew formulas - #266
Closed
heewa wants to merge 3 commits into
Closed
Conversation
Member
|
First, I absolutely love that you created a brew command. That's the kind of command I would personally use as I put stuff in Homebrew. But, this is the kind of thing that belongs in a plugin rather than a core part of Glide. A lot of people won't use it and it's not required for package management. Is that something you'd consider doing? If so we'd like to link to it as an example of a plugin. Would love to tell people about it. |
Contributor
Author
|
Oh, I didn't know about plugins. I'll do that instead. Thanks! |
Contributor
Author
|
Pending changes from PR #489, here's the plugin version of this change: glide-brew |
This file contains hidden or 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
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.
Manually creating Homebrew "resource" definitions for a formula is pretty tedious and error prone, especially keeping them correctly updated over time. This change adds
glide brewto convert the lockfile to homebrew resource definitions.I also factored out some of the logic I needed into the
cfgpackage, but I kept those changes in two separate commits, for clarity.