mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 17:28:06 +00:00
handle empty env vars - fixed #3217
This commit is contained in:
parent
2cafd97751
commit
e277c52f71
1 changed files with 2 additions and 1 deletions
|
@ -167,7 +167,8 @@ export class Session extends BaseSession {
|
|||
}
|
||||
|
||||
if (!pty) {
|
||||
const env = {
|
||||
// filter out empty env
|
||||
const { '': _, ...env } = {
|
||||
...process.env,
|
||||
TERM: 'xterm-256color',
|
||||
TERM_PROGRAM: 'Terminus',
|
||||
|
|
Loading…
Reference in a new issue