debian/source_byobu.py: invoke ls command allowing for shell expansion,

LP: #408936
[ Scott Moser ]


Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
Dustin Kirkland 2009-08-05 12:25:25 +01:00
commit 62aced90bb
2 changed files with 4 additions and 2 deletions

4
debian/changelog vendored
View file

@ -4,8 +4,10 @@ byobu (2.25) unreleased; urgency=low
before sourcing it, LP: #407478
* temp_f, temp_c: use degree character
* release, logo: default the logo and release to Byobu, if undetermined
* debian/source_byobu.py: invoke ls command allowing for shell expansion,
LP: #408936
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 03 Aug 2009 03:51:06 +0100
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 05 Aug 2009 12:24:14 +0100
byobu (2.24-0ubuntu1) karmic; urgency=low

View file

@ -9,5 +9,5 @@ from os import path
def add_info(report):
attach_related_packages(report, ['byobu*', 'screen*'])
report['Binaries'] = command_output(['ls', '-alF', '/usr/bin/screen*', '/usr/bin/byobu*'])
report['Binaries'] = command_output(['sh', '-c', 'ls -alF /usr/bin/screen* /usr/bin/byobu*'])
attach_file_if_exists(report, path.expanduser('~/.screenrc'), 'ScreenRC')