summaryrefslogtreecommitdiff
path: root/DistUpgrade/cdromupgrade
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-28 12:11:16 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-28 12:11:16 +0200
commitcdbedcff87091add303c4ea433a1f2cd6d97ffde (patch)
treeee5e82daf5d2e83110ff289d2f0c87bb17805851 /DistUpgrade/cdromupgrade
parent1246f1b2b970b2810a0197b0d11eec635cb74abc (diff)
downloadpython-apt-cdbedcff87091add303c4ea433a1f2cd6d97ffde.tar.gz
* DistUpgrade/cdromupgrade:
- just use "mktemp -d" to make sure we get a full path
Diffstat (limited to 'DistUpgrade/cdromupgrade')
-rwxr-xr-xDistUpgrade/cdromupgrade2
1 files changed, 1 insertions, 1 deletions
diff --git a/DistUpgrade/cdromupgrade b/DistUpgrade/cdromupgrade
index 4c9d0279..37335045 100755
--- a/DistUpgrade/cdromupgrade
+++ b/DistUpgrade/cdromupgrade
@@ -23,7 +23,7 @@ if [ ! -f $fullpath/$CODENAME.tar.gz ]; then
exit 1
fi
-TMPDIR=$(mktemp -d distupgrade.XXXXXX)
+TMPDIR=$(mktemp -d)
cd $TMPDIR
tar xzf $fullpath/$CODENAME.tar.gz
if [ ! -x $TMPDIR/$CODENAME ]; then