summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorBrian C. Lane <bcl@redhat.com>2012-06-21 09:02:02 -0700
committerBrian C. Lane <bcl@redhat.com>2012-06-21 09:02:02 -0700
commit3834703c77645d8d4187bd9d18ebdf593292c0b4 (patch)
tree55439e6cb718dd9dd250d017ff70c5aecb1a5978 /scripts
parent798331fc7e088d702be86dcd33e2f33076e2f693 (diff)
downloadanaconda-3834703c77645d8d4187bd9d18ebdf593292c0b4.tar.gz
anaconda-3834703c77645d8d4187bd9d18ebdf593292c0b4.tar.xz
anaconda-3834703c77645d8d4187bd9d18ebdf593292c0b4.zip
makeupdates: update for newui path and update overlay
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makeupdates6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/makeupdates b/scripts/makeupdates
index 1b8626dd4..1f6a98733 100755
--- a/scripts/makeupdates
+++ b/scripts/makeupdates
@@ -137,7 +137,7 @@ def copyUpdatedFiles(tag, updates, cwd):
# UI files should go under ui/<dir> where dir is the directory
# above the file.ui
uidir = os.path.dirname(file).split(os.path.sep)[-1]
- install_to_dir(file, os.path.join("ui",uidir))
+ install_to_dir(file, os.path.join(tmpupdates, "ui", uidir))
elif file.startswith('pyanaconda/'):
# pyanaconda stuff goes into /tmp/updates/[path]
dirname = os.path.join(tmpupdates, os.path.dirname(file))
@@ -166,10 +166,10 @@ def copyUpdatedFiles(tag, updates, cwd):
continue
else:
sys.stdout.write("Including %s\n" % (file,))
- shutil.copy2(file, tmpupdates)
+ install_to_dir(file, tmpupdates)
else:
sys.stdout.write("Including %s\n" % (file,))
- shutil.copy2(file, tmpupdates)
+ install_to_dir(file, tmpupdates)
def isysChanged(tag):
lines = doGitDiff(tag, ['isys'])