witty-crayon-22786
05/10/2022, 8:49 PM./pants experimental-bsp creates both .bsp/pants.json and .pants.d/bsp/scripts/run-bsp.sh … but an issue is that new users won’t have a .pants.d/bsp directoryfast-nail-55400
05/10/2022, 8:50 PMbsp_dir = build_root.pathlib_path / ".pants.d" / "bsp"
bsp_scripts_dir = bsp_dir / "scripts"
bsp_scripts_dir.mkdir(exist_ok=True, parents=True)
bsp_logs_dir = bsp_dir / "logs"
bsp_logs_dir.mkdir(exist_ok=True, parents=True)fast-nail-55400
05/10/2022, 8:50 PMparents=True should handle making all parent dirs, right?witty-crayon-22786
05/10/2022, 8:50 PM.bsp directory, and instead suggest that every user run ./pants experimental-bsp the first time they want to use IJ
2. do recommend committing the .bsp directory, but ignore the script within itfast-nail-55400
05/10/2022, 8:51 PMwitty-crayon-22786
05/10/2022, 8:51 PMwitty-crayon-22786
05/10/2022, 8:53 PM