fastlane-plugin-ftps 0.1.24 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 913eb7826c64d7d3546f0fb328a0df3b3073a8bd46600e98969d9743517a06cf
|
4
|
+
data.tar.gz: 325a1c287a7d447eb19a6ec3c037442a2aec21c5215d3432baba9f9e05e66b7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f064a481ddf2b4be48147f315e22801b1a059fec6aff7e2044d62e64c729c500252e6b8868a582a4eccbefbd9887ee149a1d9a36352679209ce13fdac8e213b1
|
7
|
+
data.tar.gz: 00f3dc01924929641dca8247cfd0e0f111bd096089321503fc9ef508ea6104a8f933206455a53632377a90ec7e12b0d503eec2dd0e6faccbb4c3afc1556fade2
|
@@ -84,6 +84,10 @@ module Fastlane
|
|
84
84
|
# )
|
85
85
|
|
86
86
|
file_paths.each do |local_file|
|
87
|
+
UI.success("Successfully try #{local_file}")
|
88
|
+
|
89
|
+
next unless File.file?(local_file)
|
90
|
+
|
87
91
|
relative_path = local_file.sub(%r{\A#{Regexp.escape(base_file_path)}/?}, '')
|
88
92
|
UI.success("Successfully download #{local_file} #{base_file_path} #{relative_path}")
|
89
93
|
|
@@ -106,7 +110,7 @@ module Fastlane
|
|
106
110
|
end
|
107
111
|
|
108
112
|
ftp.close
|
109
|
-
UI.success("Successfully uploaded all files to #{params[:
|
113
|
+
UI.success("Successfully uploaded all files to #{params[:upload_multiple][:dest]}")
|
110
114
|
end
|
111
115
|
|
112
116
|
#####################################################
|