Using diff -u in check_for_diffs

This commit is contained in:
rl1987 2019-03-06 19:55:38 +02:00
parent 5f253f6a47
commit 537692c1e3

View File

@ -20,7 +20,7 @@ check_for_diffs() {
then
echo "ATTENTION: $1 hook has changed:"
echo "==============================="
diff "$installed" "$latest"
diff -u "$installed" "$latest"
fi
fi
}