Remove quotes in globbed patch CLEANup

Globbing does not work within single or double quotes.
https://unix.stackexchange.com/questions/67757/wildcards-inside-quotes
pull/168/head
David Steele 2018-03-24 12:43:49 -04:00
parent de5b2baa1c
commit 1bc22b49c6
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ EOF
pushd "${STAGE_WORK_DIR}" > /dev/null
if [ "${CLEAN}" = "1" ]; then
rm -rf .pc
rm -rf "./*-pc"
rm -rf ./*-pc
fi
QUILT_PATCHES="${SUB_STAGE_DIR}/${i}-patches"
SUB_STAGE_QUILT_PATCH_DIR="$(basename "$SUB_STAGE_DIR")-pc"