From 8879b3d1631a262ac1708d9cdd82a36a8303768b Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Mon, 13 Jan 2014 16:58:36 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20push-upd?= =?UTF-8?q?ate=2005?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- push-update.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/push-update.sh b/push-update.sh index cab4fc5..6b753e8 100755 --- a/push-update.sh +++ b/push-update.sh @@ -28,46 +28,46 @@ then gitchangelog > CHANGELOG.md && (git add CHANGELOG.md > /dev/null && git commit -m 'Update CHANGELOG.md' > /dev/null && - git push --tags --porcelain > /dev/null) || + git push --tags > /dev/null) || (echo -e "Cannot push released tag into remote repository\n" && exit 1) else VERSION=$VERSION_PREVIOUS fi -git push --porcelain > /dev/null || exit 1 +git push > /dev/null || exit 1 -MESSAGE="Update ${PATH_LIB} on ${VERSION}" +MESSAGE="\nUpdate ${PATH_LIB} on ${VERSION}\n" CURRENT_DIR=`pwd` for project in "${PROJECTS[@]}" do - echo -e "Update lib for ${i}...\n" + echo -e "\nUpdate lib for ${project}...\n" (cd "${project}${PATH_LIB}" && git fetch > /dev/null && - git checkout $VERSION > /dev/null) || - (echo -e "Failed to checkout lib on tag ${VERSION}\n" && + git checkout $VERSION 2> /dev/null) || + (echo -e "\nFailed to checkout lib on tag ${VERSION}\n" && exit 1) cd "${project}" - git diff-index --quiet HEAD "${PATH_LIB#'/'}" + git diff-index --quiet HEAD "`echo ${PATH_LIB#'/'}`" LIB_NEW_COMMITS=`echo $?` if [ $LIB_NEW_COMMITS == 1 ] then - (git reset > /dev/null - git add "${PATH_LIB#'/'}" > /dev/null && + (git reset > /dev/null && + git add "`echo ${PATH_LIB#'/'}`" > /dev/null && git commit -m $MESSAGE > /dev/null) || - (echo -e "Failed to update lib for ${project}\n" && + (echo -e "\nFailed to update lib for ${project}\n" && exit 1) if [ $project == "/var/www/d753_common" ] then (git push origin master > /dev/null && cd /var/www/d753/ && ./merge-from-master.sh > /dev/null cd /var/www/d753_10ballov/ && ./merge-from-master.sh > /dev/null) || - (echo -e "Failed to update dependency d753 branches... Please resolve that problem by hand\n" && + (echo -e "\nFailed to update dependency d753 branches... Please resolve that problem by hand\n" && exit 1) fi else - echo -e "Already update\n" + echo -e "\nAlready update\n" fi done -echo -e "All operations succeed\n" +echo -e "\nAll operations succeed\n" exit 0 \ No newline at end of file