mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
[platform] launcher: no more debug mode by default in the "remote dev" mode (IJPL-34994)
GitOrigin-RevId: 99256cfdd1c7ddbdfd610f06dc499be1823f6147
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c64583fdd5
commit
e8961c4fe1
@@ -77,7 +77,7 @@ pub fn main_lib() {
|
||||
let remote_dev = remote_dev_launcher_used || server_mode_argument_used;
|
||||
let sandbox_subprocess = cfg!(target_os = "windows") && env::args().any(|arg| arg.contains("--type="));
|
||||
|
||||
let debug_mode = remote_dev || env::var(DEBUG_MODE_ENV_VAR).is_ok();
|
||||
let debug_mode = env::var(DEBUG_MODE_ENV_VAR).is_ok();
|
||||
|
||||
#[cfg(target_os = "windows")]
|
||||
{
|
||||
|
||||
@@ -578,6 +578,7 @@ fn run_launcher_impl(test_env: &TestEnvironment, run_spec: &LauncherRunSpec) ->
|
||||
(DEBUG_MODE_ENV_VAR, "1")
|
||||
]),
|
||||
LauncherLocation::RemoteDev => HashMap::from([
|
||||
(DEBUG_MODE_ENV_VAR, "1"),
|
||||
("CWM_NO_PASSWORD", "1"),
|
||||
("CWM_HOST_PASSWORD", "1"),
|
||||
("REMOTE_DEV_NON_INTERACTIVE", "1"),
|
||||
|
||||
Reference in New Issue
Block a user