Skip to content

Commit

Permalink
Merge pull request #2111 from sanzoghenzo/fix-choco
Browse files Browse the repository at this point in the history
builld: fix chocolatey package build
  • Loading branch information
jmcouffin committed Feb 24, 2024
2 parents 67e9920 + a9d4ca3 commit 76ad009
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,12 @@ def _build_msi_installers():


def _build_choco_packages():
install_version = props.get_version(install=True)
install_version_urlsafe = props.get_version(install=True, url_safe=True)
build_version_urlsafe = props.get_version(install=False, url_safe=True)
base_url = (
"https://github.com/eirannejad/pyRevit/"
f"releases/download/v{install_version_urlsafe}/"
f"releases/download/v{build_version_urlsafe}/"
)
install_version = props.get_version(install=True)
pyrevit_cli_admin_installer = (
configs.PYREVIT_CLI_ADMIN_INSTALLER_NAME.format(version=install_version)
+ ".exe"
Expand Down

0 comments on commit 76ad009

Please sign in to comment.