diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-05-21 19:30:37 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-05-21 19:35:07 +0200 |
commit | 35ec60f02489c9f81ac9ae37b3930353c2c37820 (patch) | |
tree | 67311271b06ff8901662efc086212af60918a89a /localpbuilder-create | |
parent | c209fbe3f2f6dd24776ca0649182b532490f21d9 (diff) |
Suppress cowbuilder/pbuilder cache (use approx instead.
Diffstat (limited to 'localpbuilder-create')
-rwxr-xr-x | localpbuilder-create | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/localpbuilder-create b/localpbuilder-create index 5287f52..55a24cd 100755 --- a/localpbuilder-create +++ b/localpbuilder-create @@ -98,11 +98,11 @@ fi basetgz="/var/cache/pbuilder/base-$pool.tgz" buildplace="/var/cache/pbuilder/build-$pool/" -aptcache="/var/cache/pbuilder/aptcache-$pool/" +aptcache="" buildresult="$HOME/src/pbuild-$pool/" makepaths='' -for path in "$aptcache" "$buildresult"; do +for path in "$buildresult"; do if [ ! -d "$path" ]; then echo "W: Needed path \"$path\" does not exist" makepaths='yes' @@ -113,7 +113,6 @@ if [ "$makepaths" = 'yes' ]; then || ask 'Create the missing path(s)' \ || exit1 "Cannot continue without those missing paths" mkdir -p "$buildresult" - sudo mkdir -p "$aptcache" fi sudo pbuilder create \ |