From e2862c3850062123b069773925d24b35f2cb3ce6 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 2 Jul 2012 17:36:51 -0400 Subject: [PATCH] Fix diff order in script. --- development/tools/update-po.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/tools/update-po.sh b/development/tools/update-po.sh index 82a692e247..78c49b734f 100644 --- a/development/tools/update-po.sh +++ b/development/tools/update-po.sh @@ -97,7 +97,7 @@ fi # So there are differences. if [ -z "$COMMIT" ]; then echo "Differences found!"; - diff -w $I18NFILE $FARM/$I18NFILE | less; + diff -wu $FARM/$I18NFILE $I18NFILE | less; git checkout *.po; exit 0; fi -- 2.39.5