Fix shell grouping.

This commit is contained in:
David Tomaschik
2020-10-03 15:06:55 -07:00
parent e82cad68e1
commit 5ad1ad4616

View File

@@ -357,8 +357,8 @@ install_dotfiles() {
install_main() { install_main() {
test -d ${BASEDIR}/.git && command -v git >/dev/null 2>&1 && \ test -d ${BASEDIR}/.git && command -v git >/dev/null 2>&1 && \
git -C ${BASEDIR} pull --ff-only git -C ${BASEDIR} pull --ff-only
test $MINIMAL = 1 || command -v git >/dev/null 2>&1 && \ test $MINIMAL = 1 || ( command -v git >/dev/null 2>&1 && \
git -C ${BASEDIR} submodule update --init --recursive git -C ${BASEDIR} submodule update --init --recursive )
test $MINIMAL = 1 || prerequisites test $MINIMAL = 1 || prerequisites
test $INSTALL_PKGS = 1 && is_deb_system && install_apt_pkgs test $INSTALL_PKGS = 1 && is_deb_system && install_apt_pkgs
install_dotfiles install_dotfiles