mirror of
https://github.com/corda/corda.git
synced 2025-06-23 09:25:36 +00:00
Remove TERM_PROGRAM from environment because JediTerm does not emulate MacOSX. (#436)
This commit is contained in:
@ -47,6 +47,9 @@ class R3Pty(val name: String, settings: SettingsProvider, dimension: Dimension,
|
||||
val environment = HashMap<String, String>(envs)
|
||||
if (!UIUtil.isWindows) {
|
||||
environment["TERM"] = "xterm"
|
||||
|
||||
// This environment variable is specific to MacOSX.
|
||||
environment.remove("TERM_PROGRAM")
|
||||
}
|
||||
|
||||
val connector = createTtyConnector(args, environment, workingDir)
|
||||
|
Reference in New Issue
Block a user