This commit is contained in:
Matthias Kretschmann 2017-11-25 17:51:56 +01:00
parent 77f2fc43d8
commit 73719eae95
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 2 additions and 0 deletions

View File

@ -19,4 +19,5 @@ for FILE in $FILES; do
done
# source what we just created
# shellcheck disable=SC1090
source "$HOME"/.profile

View File

@ -54,6 +54,7 @@ echo "$(tput setaf 240)Updating git repos in directory: $directory_to_update $(t
count=0
# shellcheck disable=SC2038
for dir in $(find "$directory_to_update" -maxdepth 4 -type d -name .git | xargs -n 1 dirname); do
pull "$dir" "$directory_to_update"
((count+=1))