Skip to content

Commit f3ec913

Browse files
fix distro name
1 parent 98f7966 commit f3ec913

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

debian/changelog

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
byobu (6.1) released; urgency=medium
2+
3+
* usr/lib/byobu/include/shutil:
4+
- fix distro getting from /etc/os-release
5+
6+
-- Dustin Kirkland <[email protected]> Sat, 23 Dec 2023 15:09:29 -0600
7+
18
byobu (6.0) released; urgency=medium
29

310
* usr/lib/byobu/disk:
@@ -21,7 +28,7 @@ byobu (6.0) released; urgency=medium
2128
- Wolfi doesn't really have versions, so just use the distro
2229
name rather than version id
2330

24-
-- Dustin Kirkland <[email protected]> Tue, 28 Nov 2023 20:35:36 -0600
31+
-- Dustin Kirkland <[email protected]> Sat, 23 Dec 2023 15:09:09 -0600
2532

2633
byobu (5.133-0ubuntu1) focal; urgency=medium
2734

usr/lib/byobu/include/shutil

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ get_distro() {
322322
;;
323323
*)
324324
# assume first field is what we want
325-
distro="${issue%% *}";
325+
distro="${distro%% *}";
326326
;;
327327
esac
328328
elif [ -r "/etc/issue" ]; then

0 commit comments

Comments
 (0)