tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 537692c1e37cf40decbe4a93e6a47b69fae9885d
parent 5f253f6a4727b31242cd5998f1b3326cc9e7ed33
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Wed,  6 Mar 2019 19:55:38 +0200

Using diff -u in check_for_diffs

Diffstat:
Mscripts/git/post-merge.git-hook | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/git/post-merge.git-hook b/scripts/git/post-merge.git-hook @@ -20,7 +20,7 @@ check_for_diffs() { then echo "ATTENTION: $1 hook has changed:" echo "===============================" - diff "$installed" "$latest" + diff -u "$installed" "$latest" fi fi }