fastlane-plugin-ftps 0.1.29 → 0.1.30
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: 3953f70aeb49d2109beeec7c039b43e023200dd4b87a1da9dd59762ab4d2c4c0
|
4
|
+
data.tar.gz: '06697e5046a3fb45bb41aefa2760fcd437d86d620d2add7836bf070cf8db51c1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afa58eba90fe5e63cb693d0b9e34b13e5ab358e798d64f2fadecb49e5b159d4c797a0651bd13a3178d6f8b0bd06253c7f3cc14ed41d55294656b4ebcd1303952
|
7
|
+
data.tar.gz: 40b35ef57ec36471786436a731a559b4c69cb1302bbf04b9dd1e2420758851419b2bf25661b475cc8955afe40975d15ea53933c50f98f33635edfeedefc11b2a
|
@@ -15,6 +15,7 @@ module Fastlane
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.ensure_remote_path(ftp, folder)
|
18
|
+
UI.success("Ensure Remote Path")
|
18
19
|
home = ftp.pwd # zapamiętaj katalog startowy
|
19
20
|
parts = folder.split('/')
|
20
21
|
current_path = '.'
|
@@ -24,13 +25,20 @@ module Fastlane
|
|
24
25
|
|
25
26
|
current_path = "#{current_path}/#{part}"
|
26
27
|
begin
|
28
|
+
UI.success("Current Path chdir #{current_path} begin")
|
27
29
|
ftp.chdir(current_path)
|
30
|
+
UI.success("Current Path chdir #{current_path} end")
|
28
31
|
rescue Net::FTPPermError
|
32
|
+
UI.success("Rescue mkdir #{part}")
|
29
33
|
ftp.mkdir(part)
|
34
|
+
UI.success("Rescue chdir #{current_path}")
|
30
35
|
ftp.chdir(current_path)
|
36
|
+
UI.success("Rescue chdir end")
|
31
37
|
end
|
32
38
|
end
|
39
|
+
UI.success("chdir home begin")
|
33
40
|
ftp.chdir(home)
|
41
|
+
UI.success("chdir home end")
|
34
42
|
end
|
35
43
|
|
36
44
|
def self.connect_ftp(params)
|