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
84d7810f
Commit
84d7810f
authored
May 06, 2015
by
Samuel E. Giddins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Installer] Copy Podfile.lock to Manifest.lock rather than using #write_to_disk
parent
b4abe85e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
CHANGELOG.md
CHANGELOG.md
+6
-0
installer.rb
lib/cocoapods/installer.rb
+3
-1
No files found.
CHANGELOG.md
View file @
84d7810f
...
...
@@ -27,6 +27,12 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[
Mason Glidden
](
https://github.com/mglidden
)
[
#3501
](
https://github.com/CocoaPods/CocoaPods/issues/3501
)
*
Always copy the generated
`Podfile.lock`
to
`Pods/Manifest.lock`
so they are
guarenteed to match, character-by-character, after installation.
[
Samuel Giddins
](
https://github.com/segiddins
)
[
#3502
](
https://github.com/CocoaPods/CocoaPods/issues/3502
)
## 0.37.0
For more details, see 📝
[
CocoaPods 0.37
](
http://blog.cocoapods.org/CocoaPods-0.37/
)
on our blog.
...
...
lib/cocoapods/installer.rb
View file @
84d7810f
...
...
@@ -605,7 +605,9 @@ module Pod
end
UI
.
message
"- Writing Manifest in
#{
UI
.
path
sandbox
.
manifest_path
}
"
do
@lockfile
.
write_to_disk
(
sandbox
.
manifest_path
)
sandbox
.
manifest_path
.
open
(
'w'
)
do
|
f
|
f
.
write
config
.
lockfile_path
.
read
end
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