chore(scripts): ignore untracked files during patch export (#124)

This commit is contained in:
Yury Semikhatsky 2019-12-03 11:47:49 -07:00 коммит произвёл Dmitry Gozman
Родитель ba54ad46b3
Коммит 99f9b11be8
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -48,9 +48,9 @@ fi
# we will use this just for beauty.
if [[ $# == 2 ]]; then
echo "WARNING: using custom checkout path $CHECKOUT_PATH"
echo "WARNING: using custom checkout path $2"
CHECKOUT_PATH=$2
FRIENDLY_CHECKOUT_PATH="<custom_checkout>"
FRIENDLY_CHECKOUT_PATH="<custom_checkout ( $2 )>"
fi
# if there's no checkout folder - bail out.
@ -84,7 +84,7 @@ else
fi
# Check if git repo is dirty.
if [[ -n $(git status -s) ]]; then
if [[ -n $(git status -s --untracked-files=no) ]]; then
echo "ERROR: $FRIENDLY_CHECKOUT_PATH has dirty GIT state - aborting export."
exit 1
else