Rename internal term session method

This commit is contained in:
Eric Freese 2017-01-29 10:43:20 -07:00
parent 98f926d53d
commit 64e7ec5bf8

View file

@ -61,12 +61,12 @@ class TerminalSession
private
def socket_name
@socket_name ||= SecureRandom.hex(6)
def tmux_socket_name
@tmux_socket_name ||= SecureRandom.hex(6)
end
def tmux_command(cmd)
out = `tmux -u -L #{socket_name} #{cmd}`
out = `tmux -u -L #{tmux_socket_name} #{cmd}`
raise('tmux error') unless $?.success?