fastlane-plugin-ftps 0.1.25 → 0.1.27
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: aeaaf6d5cdf50ce1df020f57f9acf2b585a5b846bb6d1f2e3023d190e288b52c
|
4
|
+
data.tar.gz: 91d816905667cb39e31573e718e1f957b736ccf3e9a697a4b698f6019a4486f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d375d76c434dcd9f81f3d4d0ba3c220e1cafb3eb3d2ae79850130e7caca42348fb87fa6708c554f7bb770de95793e143b2435198424893a86c3a447788d0689
|
7
|
+
data.tar.gz: a06504f833c0274084fbe56cc97e368368eebaa69034da962c6e32999f4fef7d3519f92426e23b1854486f8baa5080d6a3ad23bdc218b6469ce5e9866f6be21a
|
@@ -29,6 +29,7 @@ module Fastlane
|
|
29
29
|
ftp.chdir(current_path)
|
30
30
|
end
|
31
31
|
end
|
32
|
+
ftp.chdir('~/')
|
32
33
|
end
|
33
34
|
|
34
35
|
def self.connect_ftp(params)
|
@@ -84,6 +85,8 @@ module Fastlane
|
|
84
85
|
# )
|
85
86
|
|
86
87
|
file_paths.each do |local_file|
|
88
|
+
UI.success("Successfully try #{local_file}")
|
89
|
+
|
87
90
|
next unless File.file?(local_file)
|
88
91
|
|
89
92
|
relative_path = local_file.sub(%r{\A#{Regexp.escape(base_file_path)}/?}, '')
|
@@ -108,7 +111,7 @@ module Fastlane
|
|
108
111
|
end
|
109
112
|
|
110
113
|
ftp.close
|
111
|
-
UI.success("Successfully uploaded all files to #{params[:
|
114
|
+
UI.success("Successfully uploaded all files to #{params[:upload_multiple][:dest]}")
|
112
115
|
end
|
113
116
|
|
114
117
|
#####################################################
|