xbps-src: quote wrksrc to allow whitespace

This commit is contained in:
Piotr Wójcik 2020-09-02 19:04:41 +02:00 committed by Piotr
parent 4c29e554b6
commit 6efc7dd98d
9 changed files with 31 additions and 31 deletions

View file

@ -40,7 +40,7 @@ fi
# If template defines do_extract() use it rather than the hooks.
if declare -f do_extract >/dev/null; then
[ ! -d "$wrksrc" ] && mkdir -p $wrksrc
[ ! -d "$wrksrc" ] && mkdir -p "$wrksrc"
cd "$wrksrc"
run_func do_extract
else