Skip to content

Commit da630e5

Browse files
committed
refactor: fastlane dSYM 로그 처리 개선
1 parent c73880d commit da630e5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

fastlane/Fastfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ platform :ios do
135135
xcargs: "-skipPackagePluginValidation -skipMacroValidation"
136136
)
137137

138-
dsym_output_path = lane_context[SharedValues::DSYM_OUTPUT_PATH].to_s
139-
archive_path = lane_context[SharedValues::XCODEBUILD_ARCHIVE].to_s
140-
UI.message("dSYM output path: #{dsym_output_path}") if !dsym_output_path.empty?
141-
UI.message("Xcode archive path: #{archive_path}") if !archive_path.empty?
138+
dsym_output_path = lane_context[SharedValues::DSYM_OUTPUT_PATH]
139+
archive_path = lane_context[SharedValues::XCODEBUILD_ARCHIVE]
140+
UI.message("dSYM output path: #{dsym_output_path}") unless dsym_output_path.to_s.empty?
141+
UI.message("Xcode archive path: #{archive_path}") unless archive_path.to_s.empty?
142142

143143
next api_key
144144
end

0 commit comments

Comments
 (0)