Skip to content

Commit 8f85246

Browse files
committed
Fix home partition device mapper name
1 parent 7a455cb commit 8f85246

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

archinstall/lib/models/device_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,8 @@ def is_create_or_modify(self) -> bool:
10101010

10111011
@property
10121012
def mapper_name(self) -> str | None:
1013+
if self.is_home():
1014+
return 'home'
10131015
if self.dev_path:
10141016
return f'{ENC_IDENTIFIER}{self.dev_path.name}'
10151017
return None

0 commit comments

Comments
 (0)