| Index: utils/GetRepositoryPath
|
| diff --git a/utils/GetRepositoryPath b/utils/GetRepositoryPath
|
| index 2d1122e4bc4fad30cc8da658472b0e817a703716..80992d83e849499e02fb57da80678658da9142d3 100755
|
| --- a/utils/GetRepositoryPath
|
| +++ b/utils/GetRepositoryPath
|
| @@ -19,8 +19,12 @@ if [ -d .svn ]; then
|
| elif [ -f .git/svn/.metadata ]; then
|
| git svn info | grep 'URL:' | cut -d: -f2-
|
| elif [ -d .git ]; then
|
| + if [ -f .git/objects/info/alternates ]; then
|
| + cd `cat .git/objects/info/alternates`
|
| + fi
|
| git remote -v | grep 'fetch' | awk '{ print $2 }' | head -n1
|
| else
|
| + echo "Invalid Repository Path: $1" 1>&2
|
| exit 1;
|
| fi
|
|
|
|
|