summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/maint/post-merge.git-hook6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/maint/post-merge.git-hook b/scripts/maint/post-merge.git-hook
index 5c3efe8ba3..300684a9b6 100755
--- a/scripts/maint/post-merge.git-hook
+++ b/scripts/maint/post-merge.git-hook
@@ -28,7 +28,11 @@ check_for_diffs() {
check_for_script_update() {
fullpath="$git_toplevel/scripts/maint/$1"
- git diff ORIG_HEAD HEAD --exit-code -- "$fullpath"
+ if ! git diff ORIG_HEAD HEAD --exit-code -- "$fullpath" >/dev/null
+ then
+ echo "ATTENTION: $1 has changed:"
+ git diff ORIG_HEAD HEAD -- "$fullpath"
+ fi
}
check_for_diffs "pre-push"