Commit c7b67015 authored by Fabio Pelosin's avatar Fabio Pelosin

[Installer] Minor improvements

parent 22ca69d7
...@@ -341,15 +341,17 @@ module Pod ...@@ -341,15 +341,17 @@ module Pod
# @return [void] # @return [void]
# #
def write_lockfiles def write_lockfiles
# checkout_options = sandbox.checkout_options UI.section "Writing Lockfiles" do
@lockfile = Lockfile.generate(podfile, analysis_result.specifications) # checkout_options = sandbox.checkout_options
@lockfile = Lockfile.generate(podfile, analysis_result.specifications)
UI.message "- Writing Lockfile in #{UI.path config.lockfile_path}" do UI.message "- Writing Lockfile in #{UI.path config.lockfile_path}" do
@lockfile.write_to_disk(config.lockfile_path) @lockfile.write_to_disk(config.lockfile_path)
end end
UI.message "- Writing Manifest in #{UI.path sandbox.manifest_path}" do UI.message "- Writing Manifest in #{UI.path sandbox.manifest_path}" do
@lockfile.write_to_disk(sandbox.manifest_path) @lockfile.write_to_disk(sandbox.manifest_path)
end
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment