summaryrefslogtreecommitdiff
path: root/findversion.sh
diff options
context:
space:
mode:
Diffstat (limited to 'findversion.sh')
-rwxr-xr-xfindversion.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/findversion.sh b/findversion.sh
index c792ec811..6d5f18e52 100755
--- a/findversion.sh
+++ b/findversion.sh
@@ -87,6 +87,8 @@ if [ -d "$ROOT_DIR/.svn" ]; then
fi
elif [ -d "$ROOT_DIR/.git" ]; then
# We are a git checkout
+ # Refresh the index to make sure file stat info is in sync, then look for modifications
+ git update-index --refresh >/dev/null
if [ -n "`git diff-index HEAD \"$SRC_DIR\"`" ]; then
MODIFIED="2"
fi