Fix incorrect script order
This commit is contained in:
parent
d9d461c723
commit
2fef5e494d
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
||||||
rootDir="${BASH_SOURCE%/*}";
|
rootDir="${BASH_SOURCE%/*}";
|
||||||
pushd "$rootDir" > /dev/null;
|
pushd "$rootDir" > /dev/null;
|
||||||
|
|
||||||
|
. "../../Common/Scripts/hooks.sh";
|
||||||
|
|
||||||
function autoRoot() {
|
function autoRoot() {
|
||||||
{
|
{
|
||||||
echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL"
|
echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL"
|
||||||
|
@ -14,7 +16,6 @@ runHook initialize \
|
||||||
. "../Software/base-devel/install.sh";
|
. "../Software/base-devel/install.sh";
|
||||||
. "../Config/pacman/install.sh";
|
. "../Config/pacman/install.sh";
|
||||||
. "../Software/yay/install.sh";
|
. "../Software/yay/install.sh";
|
||||||
. "../../Common/Scripts/hooks.sh";
|
|
||||||
|
|
||||||
sudo pacman --noconfirm -Syu pacman-contrib;
|
sudo pacman --noconfirm -Syu pacman-contrib;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue