From 1bc22b49c6748701b479303632e93de5e288f903 Mon Sep 17 00:00:00 2001 From: David Steele Date: Sat, 24 Mar 2018 12:43:49 -0400 Subject: [PATCH] Remove quotes in globbed patch CLEANup Globbing does not work within single or double quotes. https://unix.stackexchange.com/questions/67757/wildcards-inside-quotes --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f0597b7..ebeb46a 100755 --- a/build.sh +++ b/build.sh @@ -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"