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 | |
| 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')
| -rw-r--r-- | DistUpgrade/Changelog | 2 | ||||
| -rwxr-xr-x | DistUpgrade/cdromupgrade | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 77b07371..1c1d4ab8 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-09-28: + - bugfix in the cdromupgrade script 2006-09-27: - uploaded a version that only reverts the backport fetching but no other changes compared to 2006-09-23 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 |
