usr/bin/byobu-reconnect-sockets: look for gpg sessions quietly

This commit is contained in:
Dustin Kirkland 2010-04-27 08:01:10 -05:00
commit a5d9b48cbf
2 changed files with 2 additions and 2 deletions

2
debian/changelog vendored
View file

@ -1,6 +1,6 @@
byobu (2.73) unreleased; urgency=low
* UNRELEASED
* usr/bin/byobu-reconnect-sockets: look for gpg sessions quietly
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 26 Apr 2010 19:25:51 -0500

View file

@ -32,7 +32,7 @@ fi
# Establish gpg-agent socket, helps when reconnecting to a detached session
# Sorry, ls -t is needed here, to sort by time
for i in $(ls -t "$HOME/.gnupg/"gpg-agent-info-*); do
for i in $(ls -t "$HOME/.gnupg/"gpg-agent-info-* 2>/dev/null); do
. "$i" || continue
export GPG_AGENT_INFO && break
done