# HG changeset patch # User Tero Marttila # Date 1332246616 -7200 # Node ID d83a5e9be1934dd5a26244dfd5c1fb3b8663f22d # Parent 12e098a732ed7cee1159ae15cd06f5e820f6173e update: use hg diff --stat for .serials diff -r 12e098a732ed -r d83a5e9be193 lib/update.operations --- a/lib/update.operations Tue Mar 20 14:25:05 2012 +0200 +++ b/lib/update.operations Tue Mar 20 14:30:16 2012 +0200 @@ -261,7 +261,9 @@ elif [ $COMMIT_SKIP ]; then log_noop "$msg: skipped" - + + # still show diff, though + [ $LOG_DIFF ] && indent " " hg_diff else log_update "$msg..." diff -r 12e098a732ed -r d83a5e9be193 lib/update.utils --- a/lib/update.utils Tue Mar 20 14:25:05 2012 +0200 +++ b/lib/update.utils Tue Mar 20 14:30:16 2012 +0200 @@ -82,6 +82,8 @@ # Show changes in repo function hg_diff { + # just stat hidden files, but show the rest + hg diff --stat -I "$REPO/$REPO_HIDE" hg diff -X "$REPO/$REPO_HIDE" }