| Index: crup-runner.sh | 
| diff --git a/crup-runner.sh b/crup-runner.sh | 
| index 4765a2f519ed83a0a7b740a289887f34463263c6..56799dfce26d3f9737d345ba995a2531e41af733 100755 | 
| --- a/crup-runner.sh | 
| +++ b/crup-runner.sh | 
| @@ -90,7 +90,8 @@ cd "$solution" 1>/dev/null | 
|  | 
| if [ "$solution" = "$1" ]; then | 
| # Skip git checkouts not managed by crup. | 
| -  if ! grep -q -s "The Chromium Authors" ".git/description"; then | 
| +  gitdir="$(git rev-parse --git-dir)" | 
| +  if ! grep -q -s "The Chromium Authors" "$gitdir/description"; then | 
| echo "Skipping unmanaged git directory $1" 1>&2 | 
| exit 0 | 
| fi | 
|  |