Attempt to upload alpha update files

This commit is contained in:
Manuel Cortez 2019-12-11 11:13:52 -06:00
parent 0b5ca8ddb3
commit a912b4aeef
2 changed files with 10 additions and 3 deletions

View File

@ -59,8 +59,8 @@ alpha32:
- '%PYTHON3-32% prepare_zipversion.py'
- cd ..
- move src\socializer.zip socializer_x86.zip
- '%PYTHON3-32% scripts/upload.py'
- '%PYTHON3-32% scripts/generate_update_file.py'
- '%PYTHON3-32% scripts/upload.py'
only:
- schedules
- master

View File

@ -42,14 +42,21 @@ connection.cwd("static/files/")
if version not in connection.nlst():
print("Creating version directory {} because does not exists...".format(version,))
connection.mkd(version)
if "update" not in connection.nlst():
print("Creating update info directory because does not exists...")
connection.mkd("update")
connection.cwd(version)
print("Moved into version directory")
files = glob.glob("*.zip")+glob.glob("*.exe")
files = glob.glob("*.zip")+glob.glob("*.exe")+glob.glob("*.json")
print("These files will be uploaded into the version folder: {}".format(files,))
for file in files:
transferred = 0
print("Uploading {}".format(file,))
with open(file, "rb") as f:
if file.endswith("json"):
connection.storbinary('STOR ../update/%s' % file, f, callback=callback, blocksize=1024*1024)
else:
connection.storbinary('STOR %s' % file, f, callback=callback, blocksize=1024*1024)
print("Upload completed. exiting...")
connection.quit()