We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d2e4d commit c622058Copy full SHA for c622058
lib/fastlane/plugin/emerge/actions/emerge_snapshot_action.rb
@@ -34,7 +34,6 @@ def self.run(params)
34
configuration: configuration,
35
skip_codesigning: true,
36
clean: true,
37
- include_symbols: true,
38
export_method: "development",
39
export_team_id: team_id,
40
skip_package_ipa: true,
@@ -44,11 +43,6 @@ def self.run(params)
44
43
45
Helper::EmergeHelper.copy_config(config_path, archive_path)
46
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
52
53
zip_file_path = "#{temp_dir}/build/archive.xcarchive.zip"
54
ZipAction.run(
0 commit comments