mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/bin/byobu-reconnect-sockets.in:
- let's make sure that we name our temp directory
This commit is contained in:
parent
13bd91d478
commit
401dd2740f
2 changed files with 3 additions and 1 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -2,6 +2,8 @@ byobu (5.80) unreleased; urgency=medium
|
||||||
|
|
||||||
* usr/lib/byobu/include/mondrian:
|
* usr/lib/byobu/include/mondrian:
|
||||||
- simplify and cleanup the mondrian squares easter egg, and idempotent
|
- simplify and cleanup the mondrian squares easter egg, and idempotent
|
||||||
|
* usr/bin/byobu-reconnect-sockets.in:
|
||||||
|
- let's make sure that we name our temp directory
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 27 Apr 2014 09:22:30 -0500
|
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 27 Apr 2014 09:22:30 -0500
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ screen_update () {
|
||||||
# Ensure that screen's environment variables/values get propagated here
|
# Ensure that screen's environment variables/values get propagated here
|
||||||
# Enable word splitting for zsh:
|
# Enable word splitting for zsh:
|
||||||
[ "x$ZSH_VERSION" != x ] && setopt local_options sh_word_split
|
[ "x$ZSH_VERSION" != x ] && setopt local_options sh_word_split
|
||||||
tempfile=$(mktemp -q) && {
|
tempfile=$(mktemp -q ${BYOBU_RUN_DIR}/sockets-XXXXXXXX) && {
|
||||||
for var in $VARS_TO_UPDATE; do
|
for var in $VARS_TO_UPDATE; do
|
||||||
screen sh -c "echo export $var=\$$var >> \"$tempfile\""
|
screen sh -c "echo export $var=\$$var >> \"$tempfile\""
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue