From 8b84afc58bd9f83bc2a5867a8fee8780212f42a4 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Thu, 6 Jun 2024 03:43:45 -0700 Subject: [PATCH] upd: add home-manager --- .config/shell/bin/upd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/shell/bin/upd b/.config/shell/bin/upd index 205eeaa..325cf06 100755 --- a/.config/shell/bin/upd +++ b/.config/shell/bin/upd @@ -27,7 +27,7 @@ g() { git -C "$REPO" "$@"; } REPO_ABBR='echo ${REPO/"$HOME"/"~"}' # `git pull` everything mentioned in the REPOS_TO_UPDATE variable -IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "${REPOS_TO_UPDATE:-}:${DOCS_DIR:-}:$HOME/bin:${NIXOS_DIR:-}:$HOME/code/faust-ideas" +IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "${REPOS_TO_UPDATE:-}:${DOCS_DIR:-}:$HOME/bin:${NIXOS_DIR:-}:$HOME/code/faust-ideas:$HOME/.config/home-manager" for REPO in "${REPOS_TO_UPDATE_ARR[@]}"; do if [ -n "$REPO" ]; then if g rev-parse > /dev/null 2>&1; then