File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/fastlane/plugin/wpmreleasetoolkit/actions/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ def self.run(params)
19
19
20
20
params [ :locales ] . each do |loc |
21
21
if loc . is_a? ( Array )
22
- puts "Downloading language: #{ loc [ 1 ] } "
22
+ UI . message "Downloading language: #{ loc [ 1 ] } "
23
23
complete_url = "#{ params [ :project_url ] } #{ loc [ 0 ] } /default/export-translations?filters[status]=current&format=json"
24
24
downloader . download ( loc [ 1 ] , complete_url , loc [ 1 ] == params [ :source_locale ] )
25
25
end
26
26
27
27
if loc . is_a? ( String )
28
- puts "Downloading language: #{ loc } "
28
+ UI . message "Downloading language: #{ loc } "
29
29
complete_url = "#{ params [ :project_url ] } #{ loc } /default/export-translations?filters[status]=current&format=json"
30
30
downloader . download ( loc , complete_url , loc == params [ :source_locale ] )
31
31
end
You can’t perform that action at this time.
0 commit comments