bit of devex cleanup and removed last of the placeholder dirs/files

This commit is contained in:
2025-07-07 17:47:51 -05:00
parent f512afc53f
commit fd6aa5c0f0
12 changed files with 12 additions and 30 deletions

View File

@@ -34,8 +34,11 @@ GIT_REPO_LIST="$(ls -d */)"
IFS=$'\n\t'
for GIT_REPO in ${GIT_REPO_LIST[@]};do
cd $GIT_REPO
for GIT_REPO in ${GIT_REPO_LIST[@]};
do
CURRENT_DIR=$(realpath $PWD)
echo "Updating from $GIT_REPO..."
cd $GIT_REPO
git pull
cd -
cd $CURRENT_DIR
done