mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
Sort debian/install as well as debian/*.install
This commit is contained in:
parent
22bae2ac33
commit
b04aa7844f
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -4,8 +4,9 @@ ubuntu-dev-tools (0.107) UNRELEASED; urgency=low
|
||||
patches yet.
|
||||
* wrap-and-sort:
|
||||
- Correct typo in options --wrap-allways -> --wrap-always
|
||||
- Sort debian/install as well as debian/*.install
|
||||
|
||||
-- Stefano Rivera <stefano@rivera.za.net> Wed, 24 Nov 2010 18:37:49 +0200
|
||||
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 24 Nov 2010 18:47:21 +0200
|
||||
|
||||
ubuntu-dev-tools (0.106) experimental; urgency=low
|
||||
|
||||
|
@ -132,7 +132,10 @@ def main(script_name, cleanup, wrap_always, verbose=False):
|
||||
print copyright_file
|
||||
remove_trailing_whitespaces(copyright_file)
|
||||
|
||||
for install_file in sorted(glob.glob("debian/*.install")):
|
||||
install_files = sorted(glob.glob("debian/*.install"))
|
||||
if os.path.isfile("debian/install"):
|
||||
install_files.insert(0, "debian/install")
|
||||
for install_file in install_files:
|
||||
if verbose:
|
||||
print install_file
|
||||
install = Install(install_file)
|
||||
|
Loading…
x
Reference in New Issue
Block a user