[SOLVED] Error on the tis-jamovi package
Published: June 3, 2026 - 09:03
Good morning,
There is an error in the placement of the "key" value in your setup which causes the package to fail if the version is present instead of checking the value in the registry.
Your code:
The corrected code:
THANKS
Remy
There is an error in the placement of the "key" value in your setup which causes the package to fail if the version is present instead of checking the value in the registry.
Your code:
Code: Select all
def install():
install_exe_if_needed(
glob.glob("*jamovi*.exe")[0],
silentflags="/S",
min_version=control.get_software_version(),
)
key="jamovi %s" % control.get_software_version()
wait_uninstallkey_present(key)
Code: Select all
def install():
install_exe_if_needed(
glob.glob("*jamovi*.exe")[0],
silentflags="/S",
min_version=control.get_software_version(),
key="jamovi %s" % control.get_software_version()
)
Remy