mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
Merge pull request #1413 from gportay/rawfs-fix-crash-if-bogus-is-unset
[rawfs] Fix crash if bogus is unset
This commit is contained in:
commit
69c2d089f2
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class RawFSItem:
|
|||
count = 0
|
||||
|
||||
libcalamares.utils.debug("Copying {} to {}".format(self.source, self.destination))
|
||||
if libcalamares.job.configuration["bogus"]:
|
||||
if libcalamares.job.configuration.get("bogus", False):
|
||||
return
|
||||
|
||||
srcsize, srcblksize = get_device_size(self.source)
|
||||
|
|
Loading…
Add table
Reference in a new issue