-
Notifications
You must be signed in to change notification settings - Fork 14
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
Update Xcode parsing lib #239
Update Xcode parsing lib #239
Conversation
e88d1cb
to
5cb1fb7
Compare
if target == "Pods" { | ||
return project, nil | ||
} | ||
// Return the first custom project |
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.
Fixed/worked around a problem that only top-level (Pod target) projects were parsed from Podfiles. Now using the first project, disregarding which target is it in. For example, the project is under Sample target here. (It would be Pod if it was before the Sample target declaration.)
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Sample' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
project 'Sample/Sample.xcodeproj'
# Pods for Sample
pod 'Alamofire', '~> 5.5'
end
…rivate/var/tmp vs /var/tmp)
Changes
.xcodeproj
), workspaceContainer (.xcworkspace
); and podWorkpace (an.xcworkspace
where the actual workspace is not present, only the project files).Resolves: https://bitrise.atlassian.net/browse/STEP-1804