Skip to content

Commit c622058

Browse files
committed
don't remove dSYMs
1 parent 40d2e4d commit c622058

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/fastlane/plugin/emerge/actions/emerge_snapshot_action.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def self.run(params)
3434
configuration: configuration,
3535
skip_codesigning: true,
3636
clean: true,
37-
include_symbols: true,
3837
export_method: "development",
3938
export_team_id: team_id,
4039
skip_package_ipa: true,
@@ -44,11 +43,6 @@ def self.run(params)
4443

4544
Helper::EmergeHelper.copy_config(config_path, archive_path)
4645
Xcodeproj::Plist.write_to_path({ "NAME" => "Emerge Upload" }, "#{archive_path}/Info.plist")
47-
dsym_path = "#{archive_path}/dSYMs"
48-
if Dir.exist?(dsym_path)
49-
UI.message("Removing dSYMs from xcarchive")
50-
FileUtils.rm_rf(dsym_path)
51-
end
5246

5347
zip_file_path = "#{temp_dir}/build/archive.xcarchive.zip"
5448
ZipAction.run(

0 commit comments

Comments
 (0)