diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-02-15 17:05:37 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-02-15 17:05:37 -0500 |
commit | 54749b7fce6d95c1653ca1e2cf0936d1cecc688e (patch) | |
tree | 8fb8cb850b1f0e1fc23a5bb265041ea877c30e88 | |
parent | 2c504b8edc4f5ffde99323a65442675402cbd83b (diff) | |
download | devtools32-54749b7fce6d95c1653ca1e2cf0936d1cecc688e.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 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() { |