Update build-services.py

Replaced archive format from "zip" to "tar"
This commit is contained in:
Alexey Safronov 2023-11-10 12:36:51 +04:00 committed by GitHub
parent 8b4c71be7e
commit ed1eeae97b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ with open(file_path, 'wb') as open_file:
st = os.stat(file_path)
os.chmod(file_path, st.st_mode | stat.S_IEXEC)
format = "zip"
format = "tar"
for service in BACKEND_NODEJS_SERVICES:
print(f"== Build {service} project ==")