Small bugfix for latest commit

This commit is contained in:
Igor Pecovnik
2016-03-19 09:11:45 +01:00
parent 4e76ed6c9a
commit c3f7ce5b85

View File

@@ -77,8 +77,9 @@ if [[ ! -d $SRC/lib ]]; then
git clone https://github.com/igorpecovnik/lib
fi
cd $SRC/lib; git pull >/dev/null 2>&1
CHANGED_FILES=$(git checkout | grep -P '^M')
if [[ -n $CHANGED_FILES ]]; then
CHANGED_FILES=$(git checkout ${LIB_TAG:- master} | grep -P '^M' | awk '{print $2}' | tr '\n' ' ')
if [[ $? == 0 ]]; then
echo -e "[\e[0;35m warn \x1B[0m] Can't update [lib/] since you made changes to: [\e[0;33m ${CHANGED_FILES::-1} \x1B[0m]"
fi
#--------------------------------------------------------------------------------------------------------------------------------
@@ -92,4 +93,4 @@ fi
# If you are committing new version of this file, increment VERSION
# Only integers are supported
# VERSION=10
# VERSION=11