Version bump in prep for release + fixed a variable issue

This commit is contained in:
Anton Hvornum 2022-05-27 21:58:51 +02:00
parent 4d57630c90
commit 79fc663e3f
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ from .lib.hsm import (
)
parser = ArgumentParser()
__version__ = "2.4.3rc1"
__version__ = "2.5.0"
storage['__version__'] = __version__
# add the custome _ as a builtin, it can now be used anywhere in the

View File

@ -327,7 +327,7 @@ class Installer:
time.sleep(1)
try:
findmnt(f"{self.target}{mountpoint}", traverse=False)
findmnt(pathlib.Path(f"{self.target}{mountpoint}"), traverse=False)
except DiskError:
raise DiskError(f"Target {self.target}{mountpoint} never got mounted properly (unable to get mount information using findmnt).")