Files
openide/python/installers.cmd
Leonid Shalupov da2b4c412d IJI-3417 build scripts: make community/python/installers.cmd use Bazel
GitOrigin-RevId: 0a47e64d6a4676ad8f41cf884f73636c145818d8
2026-01-06 14:02:28 +00:00

28 lines
761 B
Batchfile
Executable File

:<<"::CMDLITERAL"
@ECHO OFF
GOTO :CMDSCRIPT
::CMDLITERAL
# installer.cmd builds PyCharm Community installers
# THIS SCRIPTS WORKS FOR ALL SYSTEMS Linux/Windows/macOS
# See README.md for usage scenarios
# Arguments are passed as JVM options
# and used in org.jetbrains.intellij.build.BuildOptions
# Pass --debug to suspend and wait for debugger at port 5005
set -eu
root="$(cd "$(dirname "$0")" && cd .. && pwd)"
exec "$root/build/run_build_target.sh" "$root" @community//python/build:i_build_target "$@"
:CMDSCRIPT
"%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe" ^
-NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass ^
-File "%~dp0..\build\run_build_target.ps1" ^
"%~dp0.." ^
"@community//python/build:i_build_target" ^
%*