Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Follow symlinks when finding repositories.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Jan 26, 2013
1 parent 752faa0 commit 650faac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion git-gc-global
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echorun() {
$*
}

for SCM in $(find $CURRENT -name .git)
for SCM in $(find -L $CURRENT -name .git)
do
DIRECTORY=$(dirname $SCM)
cd $DIRECTORY
Expand Down
2 changes: 1 addition & 1 deletion git-set-email-global
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CURRENT=$PWD
IFS="
"

for SCM in $(find $CURRENT -name .git)
for SCM in $(find -L $CURRENT -name .git)
do
DIRECTORY=$(dirname $SCM)
cd $DIRECTORY
Expand Down
2 changes: 1 addition & 1 deletion scm-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echorun() {
$*
}

for SCM in $(find $CURRENT -name .git) $(find $CURRENT -name .svn)
for SCM in $(find -L $CURRENT -name .git) $(find $CURRENT -name .svn)
do
DIRECTORY=$(dirname $SCM)
cd $DIRECTORY
Expand Down

0 comments on commit 650faac

Please sign in to comment.