diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-02-15 17:05:37 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-04-05 14:09:14 -0400 |
commit | 1a194dcfe5302a09986170bcb8f209ae01f31559 (patch) | |
tree | dc6153a1b98a4b2f1edfd88c9e792fd159cd53c2 | |
parent | 46fe7d6a8333585a9e0e0bba5b31a234f89ceb91 (diff) | |
download | devtools32-1a194dcfe5302a09986170bcb8f209ae01f31559.tar.xz |
makechrootpkg: Quote directory passed to `rm -rf`.
-rw-r--r-- | makechrootpkg.in | 2 |
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() { |