summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-05-20 21:36:38 +0200
committerGuido Günther <agx@sigxcpu.org>2011-05-20 21:43:37 +0200
commite66c9e8bc8e2291f8977b2dd702c2792d5d947fa (patch)
treec2912c776c3cc1181fdd882ffa7c74eda79727be
parent7e022fb8ce67716d0d92d861e6e6e156ca910345 (diff)
git-pbuilder: remove single quotes from '$BASE'
"cannot canonicalize filename '/var/cache/pbuilder/base-sid.cow', does not exist" failute
-rw-r--r--git-pbuilder2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-pbuilder b/git-pbuilder
index 16d4914a..ced2906f 100644
--- a/git-pbuilder
+++ b/git-pbuilder
@@ -87,7 +87,7 @@ case $BUILDER in
else
BASE="$COWBUILDER_BASE/base-$DIST.cow"
fi
- OPTIONS="$OPTIONS --basepath '$BASE'"
+ OPTIONS="$OPTIONS --basepath $BASE"
# Make sure the base directory exists.
if [ ! -d "$BASE" ] && [ "$1" != "create" ]; then