diff options
| author | Chris Lumens <clumens@redhat.com> | 2012-07-27 09:31:30 -0400 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2012-07-27 09:31:30 -0400 |
| commit | 68d0ee397fe2f8b823e5857daa9614089e6ac2fa (patch) | |
| tree | ee345cf95654f0cd560d306b22cae4859c37f6fa /scripts/makeupdates | |
| parent | 9b39f0c496f1945ebf9092127c5b4f6dc28b37e0 (diff) | |
| download | anaconda-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-x | scripts/makeupdates | 4 |
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)) |
