Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
svartkanin committed Jan 27, 2024
1 parent a761459 commit 952f969
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion archinstall/lib/disk/device_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def _lvm_info(
match info_type:
case 'pvseg':
return LvmPVInfo(
Path(pv_name=entry['pv_name']),
pv_name=Path(entry['pv_name']),
lv_name=entry['lv_name'],
vg_name=entry['vg_name'],
)
Expand Down
20 changes: 10 additions & 10 deletions archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1292,16 +1292,16 @@ def _add_limine_bootloader(
)

hook_contents = f'''[Trigger]
Operation = Install
Operation = Upgrade
Type = Package
Target = limine
[Action]
Description = Deploying Limine after upgrade...
When = PostTransaction
Exec = /bin/sh -c "{hook_command}"
'''
Operation = Install
Operation = Upgrade
Type = Package
Target = limine
[Action]
Description = Deploying Limine after upgrade...
When = PostTransaction
Exec = /bin/sh -c "{hook_command}"
'''

hooks_dir = self.target / 'etc' / 'pacman.d' / 'hooks'
hooks_dir.mkdir(parents=True, exist_ok=True)
Expand Down

0 comments on commit 952f969

Please sign in to comment.