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-05 14:09:14 -0400
commit1a194dcfe5302a09986170bcb8f209ae01f31559 (patch)
treedc6153a1b98a4b2f1edfd88c9e792fd159cd53c2
parent46fe7d6a8333585a9e0e0bba5b31a234f89ceb91 (diff)
downloaddevtools32-1a194dcfe5302a09986170bcb8f209ae01f31559.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() {