From e2d2a2914675c1176d0f234e2a1c3b1da3223a78 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 15 May 2022 02:11:03 -0700 Subject: [PATCH] upd: quoting this to see what it changes --- .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 79002e9..b7edbda 100755 --- a/.config/shell/bin/upd +++ b/.config/shell/bin/upd @@ -9,7 +9,7 @@ fi IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "$REPOS_TO_UPDATE:$DOCS_DIR:$HOME/bin" for REPO in "${REPOS_TO_UPDATE_ARR[@]}"; do if git -C "$REPO" rev-parse > /dev/null 2>&1; then - echo " ${GREEN}Pulling ${REPO/$HOME/"~"}‥${NC}" + echo " ${GREEN}Pulling ${REPO/"$HOME"/"~"}‥${NC}" git -C "$REPO" pull fi done