Rearrange order of Arch installation steps
This commit is contained in:
parent
f560c8de7b
commit
dff19f4604
1 changed files with 7 additions and 7 deletions
|
@ -2,13 +2,6 @@
|
||||||
rootDir="${BASH_SOURCE%/*}";
|
rootDir="${BASH_SOURCE%/*}";
|
||||||
pushd "$rootDir" > /dev/null;
|
pushd "$rootDir" > /dev/null;
|
||||||
|
|
||||||
. "../Software/base-devel/install.sh";
|
|
||||||
. "../Config/pacman/install.sh";
|
|
||||||
. "../Software/yay/install.sh";
|
|
||||||
. "../../Common/Scripts/hooks.sh";
|
|
||||||
|
|
||||||
sudo pacman --noconfirm -Syu pacman-contrib;
|
|
||||||
|
|
||||||
function autoRoot() {
|
function autoRoot() {
|
||||||
{
|
{
|
||||||
echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL"
|
echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL"
|
||||||
|
@ -18,6 +11,13 @@ function autoRoot() {
|
||||||
runHook initialize \
|
runHook initialize \
|
||||||
autoRoot;
|
autoRoot;
|
||||||
|
|
||||||
|
. "../Software/base-devel/install.sh";
|
||||||
|
. "../Config/pacman/install.sh";
|
||||||
|
. "../Software/yay/install.sh";
|
||||||
|
. "../../Common/Scripts/hooks.sh";
|
||||||
|
|
||||||
|
sudo pacman --noconfirm -Syu pacman-contrib;
|
||||||
|
|
||||||
runHook installDrivers;
|
runHook installDrivers;
|
||||||
|
|
||||||
runHook installSoftware \
|
runHook installSoftware \
|
||||||
|
|
Loading…
Reference in a new issue