mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Small bugfix for latest commit
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user