cleanup [*]: more efficient environment access

GitOrigin-RevId: 70d25c1e85f8b6aa205b94b0adff5fcc3ea80cd9
This commit is contained in:
Roman Shevchenko
2025-11-14 11:30:53 +00:00
committed by intellij-monorepo-bot
parent 55f56ddbb0
commit 2fad23c0d1
7 changed files with 16 additions and 23 deletions
@@ -26,7 +26,7 @@ envs {
String python312version = "3.12.0"
String python313version = "3.13.0"
def customBuildDir = System.getenv().get("PYCHARM_BUILD_DIR")
def customBuildDir = System.getenv("PYCHARM_BUILD_DIR")
project.buildDir = customBuildDir? new File(customBuildDir): buildDir
bootstrapDirectory = new File(buildDir, 'pythons')
envsDirectory = new File(buildDir, 'envs')