aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimdim11 <dimdim11@yandex-team.com>2023-12-01 14:06:17 +0300
committerdimdim11 <dimdim11@yandex-team.com>2023-12-01 15:40:58 +0300
commitf7e8a839fd817778b8cd6ba3d933e286bce7f48c (patch)
treeea7bd706fe4a85b668bfc793190455923e2edff8
parent242e9089ecf026d921e6197487f1ecd421cbd403 (diff)
downloadydb-f7e8a839fd817778b8cd6ba3d933e286bce7f48c.tar.gz
Hotfix for export by yexport generator gradle
Hotfix for export by yexport generator gradle
-rw-r--r--build/plugins/java.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/java.py b/build/plugins/java.py
index ee04a37674..a567b2e029 100644
--- a/build/plugins/java.py
+++ b/build/plugins/java.py
@@ -479,7 +479,7 @@ def on_setup_project_coords_if_needed(unit, *args):
project_dir = args[0]
if project_dir.startswith(CONTRIB_JAVA_PREFIX):
- value = '\\"{}\\"'.format(_get_classpath(unit, project_dir).rstrip(':'))
+ value = '{}'.format(_get_classpath(unit, project_dir).rstrip(':'))
else:
value = 'project(\\":{}\\")'.format(project_dir.replace('/', ':'))
unit.set(['EXPORT_GRADLE_CLASSPATH', value])