Bump elf2tab to 0.6.0

This commit is contained in:
Jean-Michel Picod
2020-09-01 17:23:26 +02:00
parent 74c773d29e
commit 728401b00f
3 changed files with 4 additions and 4 deletions

View File

@@ -406,10 +406,10 @@ class OpenSKInstaller:
self.args.application))
elf2tab_ver = self.checked_command_output(["elf2tab", "--version"]).split(
"\n", maxsplit=1)[0]
if elf2tab_ver != "elf2tab 0.5.0":
if elf2tab_ver != "elf2tab 0.6.0":
error(
("Detected unsupported elf2tab version {!a}. The following "
"commands may fail. Please use 0.5.0 instead.").format(elf2tab_ver))
"commands may fail. Please use 0.6.0 instead.").format(elf2tab_ver))
os.makedirs(self.tab_folder, exist_ok=True)
tab_filename = os.path.join(self.tab_folder,
"{}.tab".format(self.args.application))