Skip to content

Commit

Permalink
fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
arch committed Dec 23, 2022
1 parent 3006edb commit 5a09203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/Installer/mtfg-ofs-extension-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def update(download_urls, latest, release_notes):

min_required_installer_version = get_required_installer_version(mtfg_dir + "_update")
print('check min required installer version', min_required_installer_version)
if version.parse(min_required_installer_version) < version.parse(VERSION.lower().replace('v', '')):
if version.parse(min_required_installer_version) > version.parse(VERSION.lower().replace('v', '')):
uninstall()
error("min required installer version is " + str(min_required_installer_version))

Expand Down

0 comments on commit 5a09203

Please sign in to comment.