From 98d798dbf5451364cc7ac7469104a0de2fc3d97d Mon Sep 17 00:00:00 2001 From: frazar <914950+frazar@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:45:26 +0200 Subject: [PATCH] Fix broken links in README.md Closes https://github.com/JetBrains/intellij-community/pull/2560 GitOrigin-RevId: 646cef422ab7b59cb268b6aa6aa8f157ce5c1490 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb2ddcd68537..cad98f83e9ca 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Examples (`./` should be added only for Linux/macOS): * Build installers only for current operating system: `./installers.cmd -Dintellij.build.target.os=current` * Build source code _incrementally_ (do not build what was already built before): `./installers.cmd -Dintellij.build.incremental.compilation=true` -`installers.cmd` is used just to run [OpenSourceCommunityInstallersBuildTarget](build/scripts/OpenSourceCommunityInstallersBuildTarget.kt) from the command line. +`installers.cmd` is used just to run [OpenSourceCommunityInstallersBuildTarget](build/src/OpenSourceCommunityInstallersBuildTarget.kt) from the command line. You may call it directly from IDEA, see run configuration `Build IDEA Community Installers (current OS)` for an example. #### Dockerized Build Environment @@ -92,5 +92,5 @@ Examples (`./` should be added only for Linux/macOS): * Build source code _incrementally_ (do not build what was already built before): `./tests.cmd -Dintellij.build.incremental.compilation=true` * Run a specific test: `./tests.cmd -Dintellij.build.test.patterns=com.intellij.util.ArrayUtilTest` -`tests.cmd` is used just to run [CommunityRunTestsBuildTarget](build/scripts/CommunityRunTestsBuildTarget.kt) from the command line. +`tests.cmd` is used just to run [CommunityRunTestsBuildTarget](build/src/CommunityRunTestsBuildTarget.kt) from the command line. You may call it directly from IDEA, see run configuration `tests in community` for an example.