summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2017-02-15 17:05:37 -0500
committerLuke Shumaker <lukeshu@parabola.nu>2017-04-02 03:16:37 -0400
commitdb303bc0e39d7b370150f8a4b7bc9513d06ec4e1 (patch)
tree31f2e4356c8c99427cd23163f3540cba211b1b7f
parent64921cb9610ad73badd58c90e400464e86649170 (diff)
downloaddevtools32-db303bc0e39d7b370150f8a4b7bc9513d06ec4e1.tar.xz
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 9566b2e..774ebcf 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -231,7 +231,7 @@ download_sources() {
(( $? != 0 )) && die "Could not download sources."
# Clean up garbage from verifysource
- rm -rf $builddir
+ rm -rf "$builddir"
}
move_products() {