[rdct] GTW-27 windows deploy: worker upload & call

GitOrigin-RevId: fc703e4172915183dd8a41126c44a0450cee0ffe
This commit is contained in:
Ivan Pashchenko
2022-10-20 16:13:08 +02:00
committed by intellij-monorepo-bot
parent e3540f3795
commit 960192d95d

View File

@@ -1,10 +1,9 @@
package com.intellij.remoteDev.util
const val REMOTE_DEV_CACHE_LOCATION = ".cache/JetBrains/RemoteDev"
const val REMOTE_DEV_IDE_DIR = "$REMOTE_DEV_CACHE_LOCATION/dist"
const val REMOTE_DEV_CUSTOM_IDE_DIR = "$REMOTE_DEV_CACHE_LOCATION/userProvidedDist"
const val REMOTE_DEV_RECENT_PROJECTS_DIR = "$REMOTE_DEV_CACHE_LOCATION/recent"
const val REMOTE_DEV_ACTIVE_PROJECTS_DIR = "$REMOTE_DEV_CACHE_LOCATION/active"
val REMOTE_DEV_CACHE_LOCATION = listOf(".cache", "JetBrains", "RemoteDev")
val REMOTE_DEV_IDE_DIR = REMOTE_DEV_CACHE_LOCATION + "dist"
val REMOTE_DEV_CUSTOM_IDE_DIR = REMOTE_DEV_CACHE_LOCATION + "userProvidedDist"
val REMOTE_DEV_RECENT_PROJECTS_DIR = REMOTE_DEV_CACHE_LOCATION + "recent"
val REMOTE_DEV_ACTIVE_PROJECTS_DIR = REMOTE_DEV_CACHE_LOCATION + "active"
const val REMOTE_DEV_EXPAND_SUCCEEDED_MARKER_FILE_NAME = ".expandSucceeded"