From e66c9e8bc8e2291f8977b2dd702c2792d5d947fa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Guido=20G=C3=BCnther?= Date: Fri, 20 May 2011 21:36:38 +0200 Subject: [PATCH] git-pbuilder: remove single quotes from '$BASE' "cannot canonicalize filename '/var/cache/pbuilder/base-sid.cow', does not exist" failute --- git-pbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-pbuilder b/git-pbuilder index 16d4914..ced2906 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 -- 2.7.4