Skip to content

Commit fc12236

Browse files
committed
env.sh: fix reading address from file
The address from `/.dbus/session-bus/...` contains extra quotes, be sure to ignore that when looking for a match. Applies at least to Ubuntu 18.04.1 and Arch Linux: DBUS_SESSION_BUS_ADDRESS='unix:abstract=/tmp/dbus-PwqhKSpHLU,guid=4da07e8716d2862711608ba95baa254f'
1 parent 8cb3f53 commit fc12236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dbus_addr() {
1717
x_display=${x_display%.*}
1818
dbus_file="$home/.dbus/session-bus/$(cat /etc/machine-id)-${x_display}"
1919

20-
env_re='^DBUS_SESSION_BUS_ADDRESS=unix:abstract=\K/tmp/dbus-[a-zA-Z0-9]+'
20+
env_re="^DBUS_SESSION_BUS_ADDRESS=['\"]?unix:abstract=\\K/tmp/dbus-[a-zA-Z0-9]+"
2121

2222
abstract_path=
2323
if [ -z "${DBUS_SESSION_BUS_ADDRESS:-}" ] && [ -e "$dbus_file" ]; then

0 commit comments

Comments
 (0)