Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
eee7807f
Commit
eee7807f
authored
Sep 24, 2014
by
Eloy Durán
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'opentable-ocho'
parents
dd70ffdd
68f5f109
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
CHANGELOG.md
CHANGELOG.md
+10
-0
validator.rb
lib/cocoapods/validator.rb
+8
-1
No files found.
CHANGELOG.md
View file @
eee7807f
...
...
@@ -6,6 +6,16 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
##### Bug Fixes
*
Works around an Xcode issue where linting would fail even though
`xcodebuild`
actually succeeds. Xcode.app also doesn't fail when this issue occurs, so it's
safe for us to do the same.
[
Kra Larivain
](
https://github.com/olarivain
)
[
Boris Bügling
](
https://github.com/neonichu
)
[
Eloy Durán
](
https://github.com/alloy
)
[
Samuel E. Giddins
](
https://github.com/segiddins
)
[
#2394
](
https://github.com/CocoaPods/CocoaPods/issues/2394
)
[
#2395
](
https://github.com/CocoaPods/CocoaPods/pull/2395
)
*
Fixes the detection of JSON podspecs included via
`:path`
.
[
laiso
](
https://github.com/laiso
)
[
#2489
](
https://github.com/CocoaPods/CocoaPods/pull/2489
)
...
...
lib/cocoapods/validator.rb
View file @
eee7807f
...
...
@@ -325,7 +325,14 @@ module Pod
UI
.
puts
output
parsed_output
=
parse_xcodebuild_output
(
output
)
parsed_output
.
each
do
|
message
|
if
message
.
include?
(
'error: '
)
# Checking the error for `InputFile` is to work around an Xcode
# issue where linting would fail even though `xcodebuild` actually
# succeeds. Xcode.app also doesn't fail when this issue occurs, so
# it's safe for us to do the same.
#
# For more details see https://github.com/CocoaPods/CocoaPods/issues/2394#issuecomment-56658587
#
if
message
.
include?
(
'error: '
)
&&
!
message
.
include?
(
"'InputFile' should have"
)
error
"[xcodebuild]
#{
message
}
"
else
note
"[xcodebuild]
#{
message
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment