in Podfile you can run some code w/ post_install like :
post_install do |installer_representation|
puts "Removing some items"
Dir.chdir("some path") do
`rm some file.txt`
end
puts "Removed !"
end
in Podfile you can run some code w/ post_install like :
post_install do |installer_representation|
puts "Removing some items"
Dir.chdir("some path") do
`rm some file.txt`
end
puts "Removed !"
end