Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/makechrootpkg.in
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2017-02-15 17:05:37 -0500
committerLuke Shumaker <lukeshu@parabola.nu>2017-02-19 14:21:29 -0500
commitbb4fcf6ac0a88f341e34b392ae8c66019edf83da (patch)
tree196a7b398290bc9f113c4dcbfdf0d90006be724a /makechrootpkg.in
parent58dfa71cb8d2db5ec4e53095760eb7b57529b28b (diff)
makechrootpkg: Quote directory passed to `rm -rf`.
Diffstat (limited to 'makechrootpkg.in')
-rw-r--r--makechrootpkg.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 145801e..3bc6ae4 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -316,7 +316,7 @@ download_sources() {
(( $? != 0 )) && die "Could not download sources."
# Clean up garbage from verifysource
- rm -rf $builddir
+ rm -rf "$builddir"
}
move_products() {