# HG changeset patch # User muxator # Date 1539116315 -7200 # Node ID d3780c8f3180dc8de038c67ababa56563a24a258 # Parent 338230555429b0a11c76bf47c27afb40b7c0ae5f packaging: builddeb's cleanup needs to expand PWD, safely Single quotes would not expand the variable. diff -r 338230555429 -r d3780c8f3180 contrib/packaging/builddeb --- a/contrib/packaging/builddeb Tue Oct 09 22:16:25 2018 +0200 +++ b/contrib/packaging/builddeb Tue Oct 09 22:18:35 2018 +0200 @@ -16,7 +16,7 @@ cleanup() { if [ '$CLEANUP' ]; then - rm -r '$PWD/debian'; + rm -r "$PWD/debian"; fi }