xxxxxxxxxx
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
unless target.name == 'Runner'
config.build_settings['SKIP_INSTALL'] = "YES"
end
end
flutter_additional_ios_build_settings target
end
Use diff
Try:
xxxxxxxxxx
diff --brief --recursive dir1/ dir2/
Or alternatively, with the short flags -qr:
xxxxxxxxxx
diff -qr dir1/ dir2/
If you also want to see differences for files that may not exist in either directory:
xxxxxxxxxx
diff --brief --recursive --new-file dir1/ dir2/ # with long options
diff -qrN dir1/ dir2/ # with short flag aliases