From a556ca989b1935368a5a350ce38c8976ac6f5183 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Mon, 9 Sep 2019 16:46:42 -0700 Subject: [PATCH] Unset VSCODE_LOGS in code.sh so it writes to the code-oss logs folder and doesn't inherit the insiders log folder --- scripts/code.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/code.sh b/scripts/code.sh index a074797ce0f..e82babd818a 100755 --- a/scripts/code.sh +++ b/scripts/code.sh @@ -47,6 +47,7 @@ function code() { export VSCODE_CLI=1 export ELECTRON_ENABLE_STACK_DUMPING=1 export ELECTRON_ENABLE_LOGGING=1 + export VSCODE_LOGS= # Launch Code exec "$CODE" . "$@" -- GitLab