summaryrefslogtreecommitdiffstats
path: root/scripts/makeupdates
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-07-27 09:31:30 -0400
committerChris Lumens <clumens@redhat.com>2012-07-27 09:31:30 -0400
commit68d0ee397fe2f8b823e5857daa9614089e6ac2fa (patch)
treeee345cf95654f0cd560d306b22cae4859c37f6fa /scripts/makeupdates
parent9b39f0c496f1945ebf9092127c5b4f6dc28b37e0 (diff)
downloadanaconda-68d0ee397fe2f8b823e5857daa9614089e6ac2fa.tar.gz
anaconda-68d0ee397fe2f8b823e5857daa9614089e6ac2fa.tar.xz
anaconda-68d0ee397fe2f8b823e5857daa9614089e6ac2fa.zip
Fix makeupdates for the new UI file suffix.
Diffstat (limited to 'scripts/makeupdates')
-rwxr-xr-xscripts/makeupdates4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makeupdates b/scripts/makeupdates
index 9b47b2c20..3c99a0123 100755
--- a/scripts/makeupdates
+++ b/scripts/makeupdates
@@ -133,9 +133,9 @@ def copyUpdatedFiles(tag, updates, cwd):
file.endswith('.sh') or file == 'configure.ac':
continue
- if file.endswith('.ui'):
+ if file.endswith('.glade'):
# Some UI files should go under ui/<dir> where dir is the
- # directory above the file.ui
+ # directory above the file.glade
uidir = os.path.dirname(file).split(os.path.sep)[-1]
if uidir in ["hubs", "spokes"]:
install_to_dir(file, os.path.join(tmpupdates, "ui", uidir))