Skip to content

Commit

Permalink
modify version for conformity build (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
Landeers authored Nov 6, 2023
1 parent 60c110b commit 24c505f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packaging/windows/freeze_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def main(program_source: Path, conformity: bool = False):
global_dict: dict[str, str] = {}
exec((program_source / "resana_secure/_version.py").read_text(), global_dict)
program_version = global_dict.get("__version__")
if conformity:
program_version = f"{program_version}-conformity"
print(f"### Detected Resana Secure version {program_version} ###")

winfsp_installer = BUILD_DIR / WINFSP_URL.rsplit("/", 1)[1]
Expand Down

0 comments on commit 24c505f

Please sign in to comment.