fix: copy files before partitionning
This commit is contained in:
parent
88f882668f
commit
55933e6390
1 changed files with 1 additions and 2 deletions
|
|
@ -1,12 +1,11 @@
|
|||
#!/bin/bash
|
||||
#shellcheck disable=SC2154
|
||||
|
||||
cp -r ./modules/chroot/ /mnt/
|
||||
|
||||
for i in ./modules/prechroot/*.sh; do
|
||||
bash -x "$i"
|
||||
done
|
||||
|
||||
cp -r ./modules/chroot/ /mnt/
|
||||
(cd ./modules/ || exit
|
||||
for i in ./chroot/*.sh; do
|
||||
arch-chroot /mnt/ bash -x "/$i"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue