diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-28 12:11:16 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-28 12:11:16 +0200 |
| commit | cdbedcff87091add303c4ea433a1f2cd6d97ffde (patch) | |
| tree | ee5e82daf5d2e83110ff289d2f0c87bb17805851 /DistUpgrade/cdromupgrade | |
| parent | 1246f1b2b970b2810a0197b0d11eec635cb74abc (diff) | |
| download | python-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-x | DistUpgrade/cdromupgrade | 2 |
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 |
