Version bump in prep for release + fixed a variable issue
This commit is contained in:
parent
4d57630c90
commit
79fc663e3f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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).")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue