File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
components/gitpod-cli/cmd Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,27 +19,27 @@ var jetbrainsGradlePauseCmd = &cobra.Command{
1919
2020This command is typically used to prevent concurrent Gradle syncs between:
2121- Manual gradle initialization in Gitpod init tasks
22- - JetBrains Gateway/IDEA's automatic Gradle sync on project open
22+ - JetBrains IDEs' (IDEA) automatic Gradle sync on project open
2323
2424Typical usage in your .gitpod.yml:
2525
2626tasks:
2727 - init: |
28- ide jetbrains gradle pause # Prevent IDEA's gradle sync
28+ gp jetbrains gradle pause # Prevent JetBrains' gradle sync
2929 ...
3030 ./gradlew <init_service> # Run your initialization tasks
31- ide jetbrains gradle resume # Enable
31+ gp jetbrains gradle resume # Enable
3232 command: ./gradlew <dev_service>
3333
3434If you have two init tasks want to pause Gradle Sync:
3535
3636tasks:
3737 - name: Task 1
3838 init: |
39- ide jetbrains gradle pause # Prevent IDEA's gradle sync
39+ gp jetbrains gradle pause # Prevent JetBrains' gradle sync
4040 ./gradlew <init_service>
4141 gp sync-await gradle-init-1
42- ide jetbrains gradle resume # Enable
42+ gp jetbrains gradle resume # Enable
4343 - name: Task 2
4444 init: |
4545 ./gradlew <init_service>
You can’t perform that action at this time.
0 commit comments