From 4e05b88db0da0960876e65b6830ae51a12f02b1a Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Wed, 12 Jul 2017 14:46:13 -0300 Subject: [PATCH] Uncommented testing lines --- util/build-packages | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/util/build-packages b/util/build-packages index 8217ee65..dec2d2d2 100755 --- a/util/build-packages +++ b/util/build-packages @@ -88,11 +88,11 @@ TAR=${TAR:-tar} # ############################################################################ check_branch() { -# echo -n "Checking branch... " -# local clean_branch=$(git status --porcelain|wc -l) -# if [ "$clean_branch" -gt 0 ]; then -# die "The branch has uncommitted changes or unknown files" -# fi + echo -n "Checking branch... " + local clean_branch=$(git status --porcelain|wc -l) + if [ "$clean_branch" -gt 0 ]; then + die "The branch has uncommitted changes or unknown files" + fi echo "OK" }