Update grs.sh

This commit is contained in:
Mohammed Goder 2024-03-23 23:46:21 -05:00
parent dfb8d36aa4
commit 514d5ba23d

2
grs.sh
View File

@ -20,7 +20,7 @@ for repository in *; do
echo "$log"
cd "$repository"
gitOutput=$(git pull --recurse-submodules=on-demand)
gitOutput=$(git pull --recurse-submodules=on-demand --rebase)
echo "$gitOutput"
cd ..
if [ "$gitOutput" == "Already up to date." ]; then continue; fi