mirror of https://github.com/openspug/spug
fix issues
parent
89006a8250
commit
5468bd6627
|
@ -132,10 +132,10 @@ class SSH:
|
||||||
|
|
||||||
counter = 0
|
counter = 0
|
||||||
self.channel = self.client.invoke_shell()
|
self.channel = self.client.invoke_shell()
|
||||||
command = 'export PS1= && stty -echo'
|
command = 'export PS1= && stty -echo\n'
|
||||||
if self.default_env:
|
if self.default_env:
|
||||||
command += f' && {self.default_env}'
|
command += f'{self.default_env}\n'
|
||||||
command += f' && echo {self.eof} $?\n'
|
command += f'echo {self.eof} $?\n'
|
||||||
self.channel.send(command.encode())
|
self.channel.send(command.encode())
|
||||||
while True:
|
while True:
|
||||||
if self.channel.recv_ready():
|
if self.channel.recv_ready():
|
||||||
|
|
Loading…
Reference in New Issue