Skip to content

Commit

Permalink
Reverse commenting out git status --porcelain
Browse files Browse the repository at this point in the history
It was wrongly commented out in this commit:
7c9d4f1
  • Loading branch information
rioug committed Jan 17, 2024
1 parent 12be3f9 commit 2a9731f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/release/update_locales
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a9731f

Please sign in to comment.