8 lines
138 B
Bash
Executable File
8 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "~> Installing 'base' group and 'grub', 'efibootmgr'"
|
|
pacstrap /mnt base grub efibootmgr
|
|
|
|
amf_return=0
|
|
return $amf_return
|