mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 00:56:21 +03:00
Removed toolchain code to skip packages #4407
This commit is contained in:
parent
e0cb5bda6e
commit
ccaf4a8ef3
@ -27,14 +27,6 @@ class FtpUploader:
|
||||
|
||||
ftp = FTP(self.host, self.user, self.password)
|
||||
ftp.cwd(self.dir)
|
||||
|
||||
# check to see if we should stop here
|
||||
if not replace:
|
||||
files = ftp.nlst()
|
||||
if dest in files:
|
||||
print 'Already exists, skipping.'
|
||||
ftp.close()
|
||||
return
|
||||
|
||||
f = open(src, 'rb')
|
||||
ftp.storbinary('STOR ' + dest, f)
|
||||
|
Loading…
Reference in New Issue
Block a user