Skip creating emty patches in debug mode

This commit is contained in:
Igor Pecovnik 2016-06-14 13:19:48 +02:00
parent a45f941e5e
commit 3eb5b111af

View File

@ -407,7 +407,8 @@ userpatch_create()
read -p 'Press <Enter> after you are done with changes to the source'
git add .
# create patch out of changes
git diff --staged > $SRC/userpatches/patch/$1-$LINUXFAMILY-$(date +'%d.%m.%Y').patch
local temp=$(git diff --staged)
[[ -z $TEMP ]] && echo "${temp}" > $SRC/userpatches/patch/$1-$LINUXFAMILY-$(date +'%d.%m.%Y').patch
git reset --soft HEAD~
fi
}