Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2017-02-15 17:05:37 -0500
committerLuke Shumaker <lukeshu@parabola.nu>2017-02-15 17:05:37 -0500
commit54749b7fce6d95c1653ca1e2cf0936d1cecc688e (patch)
tree8fb8cb850b1f0e1fc23a5bb265041ea877c30e88
parent2c504b8edc4f5ffde99323a65442675402cbd83b (diff)
makechrootpkg: Quote directory passed to `rm -rf`.
-rw-r--r--makechrootpkg.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index fe6cdbe..871537c 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -304,7 +304,7 @@ download_sources() {
(( $? != 0 )) && die "Could not download sources."
# Clean up garbage from verifysource
- rm -rf $builddir
+ rm -rf "$builddir"
}
_chrootbuild() {