Commit 904e1a7c authored by Samuel E. Giddins's avatar Samuel E. Giddins

[Migrator] Reset the manifest of the Sandbox after it is migrated

parent 3b0457ab
......@@ -62,7 +62,8 @@ module Pod
File.open(child, 'w') { |f| f.write spec.to_pretty_json }
lockfile['SPEC CHECKSUMS'][spec.name] = Specification.from_file(child).checksum
end
File.open(sandbox.manifest_path, 'w') { |f| f.write Lockfile.new(lockfile).to_yaml }
sandbox.manifest = Lockfile.new(lockfile)
File.open(sandbox.manifest_path, 'w') { |f| f.write sandbox.manifest.to_yaml }
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