diff options
author | Rene Ladan <rene@FreeBSD.org> | 2021-04-08 15:18:22 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-04-08 15:25:06 +0000 |
commit | ce196940be576646bf30593d6781df3a0170a947 (patch) | |
tree | 9aebc2c9f2f6a96f4e24ed717b3d619ad05e04a4 /Tools | |
parent | b7cc04143049938d72355c5c2ad77815d360207f (diff) |
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/tindex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/scripts/tindex b/Tools/scripts/tindex index 9adbfc4e7b80..cf8eb8c6ce8e 100755 --- a/Tools/scripts/tindex +++ b/Tools/scripts/tindex @@ -42,9 +42,11 @@ fi # -------------------------------------------------------- blame() { - # Find out who is responsible for current version of file $1 + # Find out who is responsible for current version of file $1, if not deleted - git log --no-patch --max-count=1 --format='%ce' $1 + if [ -e $1 ]; then + ${GIT} log --no-patch --max-count=1 --format='%ce' $1 + fi } indexfail() { |