mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 22:34:23 -07:00
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:
parent
eb567716e9
commit
62aced90bb
2 changed files with 4 additions and 2 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -4,8 +4,10 @@ byobu (2.25) unreleased; urgency=low
|
||||||
before sourcing it, LP: #407478
|
before sourcing it, LP: #407478
|
||||||
* temp_f, temp_c: use degree character
|
* temp_f, temp_c: use degree character
|
||||||
* release, logo: default the logo and release to Byobu, if undetermined
|
* 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
|
byobu (2.24-0ubuntu1) karmic; urgency=low
|
||||||
|
|
||||||
|
|
2
debian/source_byobu.py
vendored
2
debian/source_byobu.py
vendored
|
@ -9,5 +9,5 @@ from os import path
|
||||||
|
|
||||||
def add_info(report):
|
def add_info(report):
|
||||||
attach_related_packages(report, ['byobu*', 'screen*'])
|
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')
|
attach_file_if_exists(report, path.expanduser('~/.screenrc'), 'ScreenRC')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue