repo bash completion: _find_repo: improve check

Checking if main.py exists is better than checking if it
is a file, since it might be a symlink.

Change-Id: I1a9e617470a05c2161479cd3f0a10712a2b9d2c2
This commit is contained in:
Chirayu Desai 2013-04-30 10:33:11 +05:30 committed by Gerrit Code Review
parent 0c7371efa8
commit 58bc76bb65
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ _find_repo() {
while [ "${dir}" != / ]
do
if [ -f "${dir}/.repo/repo/main.py" ]
if [ -e "${dir}/.repo/repo/main.py" ]
then
found=0
break