-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Plugin installer support for .tgz file types #6083
Merged
Merged
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
epixa
force-pushed
the
6074-tgz-plugins
branch
from
February 3, 2016 14:27
4d7ab32
to
d66f822
Compare
epixa
force-pushed
the
6074-tgz-plugins
branch
from
February 3, 2016 14:32
d66f822
to
d1cffc1
Compare
This should be an in-place refactor without any additional behaviors or side effects.
These file extensions should be interchangeable, so there's no reason for our plugin installer not to support them. We actually did support .tgz file types up until we added .zip support.
The module is generic enough not to require an overly specific name, and it exposes more things than simply a default function, so it should be a noun.
epixa
force-pushed
the
6074-tgz-plugins
branch
from
February 3, 2016 22:39
8be9452
to
906611e
Compare
@BigFunger I made the changes we discussed and rebased this on the big change that just went into master. It'll be another 20 minutes or so before the build finishes, though. |
This LGTM, @BigFunger if you need a tgz to test with: https://dl.dropboxusercontent.com/u/7815189/timelion-latest.tgz |
LGTM! |
epixa
added a commit
that referenced
this pull request
Feb 8, 2016
Plugin installer support for .tgz file types
Backported to 4.x and 4.4 via #6147 |
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.
These file extensions should be interchangeable, so there's no reason
for our plugin installer not to support them. We actually did support
.tgz file types up until we added .zip support.
The first commit is a minor refactor to DRY up the code a bit.
The second commit adds .tgz support.
To test this, confirm that the plugin installer still handles .zip, and .tar.gz,
but also .tgz.
Fixes #6074