Renamed variable to be more descriptive.

This commit is contained in:
2019-11-15 19:31:00 +00:00
parent a2b57b2426
commit e371b8c685
+2 -2
View File
@@ -3,7 +3,7 @@
# fetch-all.sh ~/project [~/second-project]
function process_git_fetch () {
BOB=`pwd`
STARTED_IN=`pwd`
for location in "$@"; do
if [ -d "$location/.git" ]; then
echo -n "----- git fetch $location "
@@ -13,7 +13,7 @@ function process_git_fetch () {
git fetch --prune
fi
done
cd "$BOB"
cd "$STARTED_IN"
}
process_git_fetch "$@"