Restructure bootstrap dir, fix install.sh
With bootstrap files no longer linked to config directory, we can have an easier directory structure with less nesting for them. Install.sh needs to use the new structure when calling its bootstrap scripts.
This commit is contained in:
parent
dba47b8e20
commit
6fd8fcf8ca
4 changed files with 6 additions and 5 deletions
11
install.sh
11
install.sh
|
@ -49,15 +49,16 @@ install() {
|
||||||
fi
|
fi
|
||||||
echo "====================== BEGINNING INSTALLATION ============================="
|
echo "====================== BEGINNING INSTALLATION ============================="
|
||||||
if ! "$unattended"; then
|
if ! "$unattended"; then
|
||||||
export BOOTSTRAP_PACKAGES="bootstrap/.config/bootstrap/packages.csv"
|
export BOOTSTRAP_PACKAGES="bootstrap/packages.csv"
|
||||||
./bootstrap/.config/bootstrap/install_packages.sh
|
./bootstrap/install_packages.sh
|
||||||
else
|
else
|
||||||
export BOOTSTRAP_PACKAGES="bootstrap/.config/bootstrap/packages.csv"
|
export BOOTSTRAP_PACKAGES="bootstrap/packages.csv"
|
||||||
./bootstrap/.config/bootstrap/install_packages.sh -f
|
./bootstrap/install_packages.sh -f
|
||||||
fi
|
fi
|
||||||
|
unset BOOTSTRAP_PACKAGES
|
||||||
|
|
||||||
echo "=================== BEGINNING DOTFILE MANAGEMENT =========================="
|
echo "=================== BEGINNING DOTFILE MANAGEMENT =========================="
|
||||||
./bootstrap/.config/bootstrap/autostow.sh -s
|
./bootstrap/autostow.sh -s
|
||||||
|
|
||||||
echo "====================== INSTALLATION FINISHED =============================="
|
echo "====================== INSTALLATION FINISHED =============================="
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue