summaryrefslogtreecommitdiffstats
path: root/urlinstall.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-19 19:31:06 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-19 19:31:06 +0000
commit94a74cadbd5802c5f0b93d777da512705c99fe28 (patch)
treedd818a38a27b887378f47daebb9e3dd32aa1f7d7 /urlinstall.py
parent95fb7759d034e18971202a63792df474e9c38d62 (diff)
downloadanaconda-94a74cadbd5802c5f0b93d777da512705c99fe28.tar.gz
anaconda-94a74cadbd5802c5f0b93d777da512705c99fe28.tar.xz
anaconda-94a74cadbd5802c5f0b93d777da512705c99fe28.zip
actually copy packages to /var/tmp/foo.rpm instead of /var/tmpfoo.rpm
Diffstat (limited to 'urlinstall.py')
-rw-r--r--urlinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urlinstall.py b/urlinstall.py
index 7829e9914..3578d3b47 100644
--- a/urlinstall.py
+++ b/urlinstall.py
@@ -45,7 +45,7 @@ class UrlInstallMethod(InstallMethod):
"/." ]
for p in pathlist:
if (os.access(root + p, os.X_OK)):
- tmppath = root + p
+ tmppath = root + p + "/"
break
# h doubles as a filename -- gross