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
1b17747a
Commit
1b17747a
authored
May 06, 2015
by
Kyle Fuller
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3506 from dbarden/installer_broken_symlink
[Installer] Check for regular file on lock
parents
5620fd41
fabc75b4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CHANGELOG.md
CHANGELOG.md
+3
-0
pod_source_installer.rb
lib/cocoapods/installer/pod_source_installer.rb
+1
-1
No files found.
CHANGELOG.md
View file @
1b17747a
...
...
@@ -15,6 +15,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
*
C++ source files with
`.cc`
extension now have their compiler flags set correctly.
[
Chongyu Zhu
](
https://github.com/lembacon
)
*
Handle broken symlinks when installing a Pod.
[
Daniel Barden
](
https://github.com/dbarden
)
[
#3515
](
https://github.com/cocoapods/cocoapods/issues/3515
)
## 0.37.0
...
...
lib/cocoapods/installer/pod_source_installer.rb
View file @
1b17747a
...
...
@@ -103,7 +103,7 @@ module Pod
# We don't want to lock diretories, as that forces you to override
# those permissions if you decide to delete the Pods folder.
Dir
.
glob
(
root
+
'**/*'
).
each
do
|
file
|
unless
File
.
directory
?
(
file
)
if
File
.
file
?
(
file
)
File
.
chmod
(
0444
,
file
)
end
end
...
...
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