Skip to content

Commit eb97e84

Browse files
committed
Fix root partition device mapper name
1 parent 26c6812 commit eb97e84

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_root():
1014+
return 'root'
10131015
if self.is_home():
10141016
return 'home'
10151017
if self.dev_path:

0 commit comments

Comments
 (0)