mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 07:47:24 +00:00
32 lines
912 B
Python
32 lines
912 B
Python
import subprocess
|
|
import os
|
|
|
|
file = open('pubspec.yaml', 'r')
|
|
content = file.read()
|
|
file.close()
|
|
|
|
subprocess.run(["flutter", "build", "windows"], shell=True)
|
|
|
|
if os.path.exists("build/app-windows.zip"):
|
|
os.remove("build/app-windows.zip")
|
|
|
|
version = str.split(str.split(content, 'version: ')[1], '+')[0]
|
|
|
|
subprocess.run(["tar", "-a", "-c", "-f", f"build/windows/Venera-{version}-windows.zip", "-C", "build/windows/x64/runner/Release", "."]
|
|
, shell=True)
|
|
|
|
issContent = ""
|
|
file = open('windows/build.iss', 'r')
|
|
issContent = file.read()
|
|
newContent = issContent
|
|
newContent = newContent.replace("{{version}}", version)
|
|
newContent = newContent.replace("{{root_path}}", os.getcwd())
|
|
file.close()
|
|
file = open('windows/build.iss', 'w')
|
|
file.write(newContent)
|
|
file.close()
|
|
|
|
subprocess.run(["iscc", "windows/build.iss"], shell=True)
|
|
|
|
with open('windows/build.iss', 'w') as file:
|
|
file.write(issContent) |