mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
fix up change
This commit is contained in:
10
install.sh
10
install.sh
@@ -368,10 +368,12 @@ install_dotfiles() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
install_main() {
|
install_main() {
|
||||||
test -d "${BASEDIR}/.git" && command -v git >/dev/null 2>&1 && \
|
if test -d "${BASEDIR}/.git" ; then
|
||||||
git -C "${BASEDIR}" pull --ff-only
|
command -v git >/dev/null 2>&1 && \
|
||||||
test "$MINIMAL" = 1 || ( command -v git >/dev/null 2>&1 && \
|
git -C "${BASEDIR}" pull --ff-only
|
||||||
git -C "${BASEDIR}" submodule update --init --recursive )
|
test "$MINIMAL" = 1 || ( command -v git >/dev/null 2>&1 && \
|
||||||
|
git -C "${BASEDIR}" submodule update --init --recursive )
|
||||||
|
fi
|
||||||
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
|
||||||
|
|||||||
Reference in New Issue
Block a user