diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-02-15 17:05:37 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-04-02 03:16:37 -0400 |
commit | db303bc0e39d7b370150f8a4b7bc9513d06ec4e1 (patch) | |
tree | 31f2e4356c8c99427cd23163f3540cba211b1b7f /makechrootpkg.in | |
parent | 64921cb9610ad73badd58c90e400464e86649170 (diff) |
makechrootpkg: Quote directory passed to `rm -rf`.
Diffstat (limited to 'makechrootpkg.in')
-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() { |