Support for XCode xip files#13
Open
brianwallace wants to merge 1 commit into
Open
Conversation
… for xcode v8.0+.
|
I love the XIP support, but this shouldn't be added here. This belongs in the https://github.com/chef-cookbooks/ark IMO. And the implementation should be in ruby and not python to keep things 'in the family' so to speak. |
Brantone
reviewed
Dec 19, 2016
| when /^10\.9/ | ||
| default["xcode"]["url"] = nil # should point to Xcode_6.2.dmg | ||
| default["xcode"]["checksum"] = "00545c078470c14e6a53204324e2c10283c18c86d3a9f580bf90cbe97c6c28ec" | ||
| default["xcode"]["package_type"] = "dmg" |
There was a problem hiding this comment.
Can't this be parsed from the url / file name?
|
An approach for the xip unpacking would be the Puppet approach to use Archive Utility to extract the package.
|
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.
This PR introduce support for xip files which is the new distribution vehicle for xcode v8.0+. It is intended to fix issue #11.
The command line steps on how to install a xip file were taken from the following Stack Overflow Article.
Feedback welcome.