From 63df0a8c8efcfddaef7d0c3eb054bdab9956b8ef Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Sat, 10 Feb 2024 10:56:56 -0600 Subject: [PATCH] Fix for VSCode, fish and byobu installations https://github.com/dustinkirkland/byobu/commit/f917d2169afdec623f5b32723d93bfd91d34b92f#commitcomment-137955113 --- debian/changelog | 5 ++++- usr/bin/byobu-launcher-install.in | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5a54874b..bb7034e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,11 @@ byobu (6.11) unreleased; urgency=medium - fix BYOBU_RUN_DIR and BYOBU_PREFIX issue - https://github.com/dustinkirkland/byobu/pull/62 - https://launchpad.net/bugs/2051995 LP: #2051995 + * usr/bin/byobu-launcher-install.in: + - Fix for VSCode, fish and byobu installations + - https://github.com/dustinkirkland/byobu/commit/f917d2169afdec623f5b32723d93bfd91d34b92f#commitcomment-137955113 - -- Dustin Kirkland Sat, 10 Feb 2024 10:49:43 -0600 + -- Dustin Kirkland Sat, 10 Feb 2024 10:56:13 -0600 byobu (6.10-0ubuntu1) noble; urgency=medium diff --git a/usr/bin/byobu-launcher-install.in b/usr/bin/byobu-launcher-install.in index a73db22f..4ad6d0d3 100755 --- a/usr/bin/byobu-launcher-install.in +++ b/usr/bin/byobu-launcher-install.in @@ -49,8 +49,8 @@ install_launcher() { install_launcher_fish() { $PKG-launcher-uninstall "$1" || true - printf "if not set -q VSCODE_CWD" >> "$1" - printf " status --is-login; and status --is-interactive; and exec byobu-launcher" >> "$1" + printf "if not set -q VSCODE_CWD; " >> "$1" + printf " status --is-login; and status --is-interactive; and exec byobu-launcher;" >> "$1" printf "end" >> "$1" }