From e9161d6a4ebdd9165c1bea2bc8b451709d142bf5 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 17 Jan 2024 03:42:55 -0800 Subject: [PATCH] add faust-ideas to upd --- .config/shell/bin/upd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/shell/bin/upd b/.config/shell/bin/upd index fa7b6e8..205eeaa 100755 --- a/.config/shell/bin/upd +++ b/.config/shell/bin/upd @@ -1,4 +1,5 @@ #!/bin/bash +# updates some important repositories in my home folder (and elsewhere) that exist on multiple devices set -eu @@ -26,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:-}" +IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "${REPOS_TO_UPDATE:-}:${DOCS_DIR:-}:$HOME/bin:${NIXOS_DIR:-}:$HOME/code/faust-ideas" for REPO in "${REPOS_TO_UPDATE_ARR[@]}"; do if [ -n "$REPO" ]; then if g rev-parse > /dev/null 2>&1; then