use workingDir if shellInstance is nil otherwise use cwd if shellInstance is not nil
parent
f12386e558
commit
8a4d4152ce
|
|
@ -47,8 +47,10 @@ func GetPersistentShell(workingDir string) *PersistentShell {
|
|||
shellInstance = newPersistentShell(workingDir)
|
||||
})
|
||||
|
||||
if shellInstance == nil || !shellInstance.isAlive {
|
||||
if shellInstance == nil {
|
||||
shellInstance = newPersistentShell(workingDir)
|
||||
} else if !shellInstance.isAlive {
|
||||
shellInstance = newPersistentShell(shellInstance.cwd)
|
||||
}
|
||||
|
||||
return shellInstance
|
||||
|
|
|
|||
Loading…
Reference in New Issue