From f813487cb194951ae954695131f6af6c671eb301 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Mon, 17 Aug 2009 13:34:26 -0500 Subject: [PATCH] * byobu-status: source, rather than exec the target status script, such that the script inherits the source status config variables Signed-off-by: Dustin Kirkland --- byobu-status | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byobu-status b/byobu-status index 9d1dc075..5063fdc4 100755 --- a/byobu-status +++ b/byobu-status @@ -57,5 +57,5 @@ if [ "$P" = "--detail" ]; then else eval x="\$$P" || exit 1 [ "$x" = "1" ] || exit 0 - exec $(find_script "$P") + . $(find_script "$P") fi