mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-04 19:40:02 +03:00
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
"""
|
|
installer.py - Build the Installer.
|
|
|
|
Copyright (c) EDCD, All Rights Reserved
|
|
Licensed under the GNU General Public License.
|
|
See LICENSE file.
|
|
"""
|
|
import subprocess
|
|
from pathlib import Path
|
|
from build import build
|
|
|
|
|
|
def run_inno_setup_installer(iss_path: Path) -> None:
|
|
"""Run the Inno installer, building the installation exe."""
|
|
# Get the path to the Inno Setup compiler (iscc.exe) (Currently set to default path)
|
|
inno_setup_compiler_path = Path("C:\\Program Files (x86)\\Inno Setup 6\\ISCC.exe")
|
|
|
|
# Check if the Inno Setup compiler executable exists
|
|
if not inno_setup_compiler_path.exists():
|
|
print(f"Error: Inno Setup compiler not found at '{inno_setup_compiler_path}'.")
|
|
return
|
|
|
|
# Check if the provided .iss file exists
|
|
if not iss_file_path.exists():
|
|
print(f"Error: The provided .iss file '{iss_path}' not found.")
|
|
return
|
|
|
|
# Run the Inno Setup compiler with the provided .iss file
|
|
try:
|
|
subprocess.run([inno_setup_compiler_path, iss_file_path], check=True)
|
|
except subprocess.CalledProcessError as err:
|
|
print(
|
|
f"Error: Inno Setup compiler returned an error (exit code {err.returncode}):"
|
|
)
|
|
print(err.output.decode())
|
|
except Exception as err:
|
|
print(f"Error: An unexpected error occurred: {err}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
build()
|
|
# Add the ISS Template File
|
|
iss_file_path = Path("./EDMC_Installer_Config.iss")
|
|
# Build the ISS file
|
|
run_inno_setup_installer(iss_file_path)
|