Use absolute path for -S
It appears that using relative path for -S is not the best idea and yields tmux calls from powerline-config not working.
This commit is contained in:
parent
908d767ec0
commit
36b9c966e0
|
@ -93,7 +93,7 @@ def get_expected_result(tmux_version,
|
|||
|
||||
def main(attempts=3):
|
||||
vterm_path = os.path.join(VTERM_TEST_DIR, 'path')
|
||||
socket_path = 'tmux-socket'
|
||||
socket_path = os.path.abspath('tmux-socket')
|
||||
rows = 50
|
||||
cols = 200
|
||||
|
||||
|
|
Loading…
Reference in New Issue