From 2a9731f8868e80420c439f81deda8d21c26d0546 Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou Date: Wed, 17 Jan 2024 16:15:44 +1100 Subject: [PATCH] Reverse commenting out git status --porcelain It was wrongly commented out in this commit: 7c9d4f134222692450d13efcabb0c1e16d6c1b2f --- script/release/update_locales | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/release/update_locales b/script/release/update_locales index e872df46fc6..186ea1c2623 100755 --- a/script/release/update_locales +++ b/script/release/update_locales @@ -6,10 +6,10 @@ # Exit on error or uncommitted changes # TODO: check that master matches upstream/master set -e -#if [ ! -z "$(git status --porcelain)" ]; then -# echo "Aborted: git working directory is not clean." -# exit 1 -#fi +if [ ! -z "$(git status --porcelain)" ]; then + echo "Aborted: git working directory is not clean." + exit 1 +fi echo "\n*** Checking out latest master... ***\n" git checkout master