diff options
author | dimdim11 <dimdim11@yandex-team.com> | 2023-12-01 14:06:17 +0300 |
---|---|---|
committer | dimdim11 <dimdim11@yandex-team.com> | 2023-12-01 15:40:58 +0300 |
commit | f7e8a839fd817778b8cd6ba3d933e286bce7f48c (patch) | |
tree | ea7bd706fe4a85b668bfc793190455923e2edff8 | |
parent | 242e9089ecf026d921e6197487f1ecd421cbd403 (diff) | |
download | ydb-f7e8a839fd817778b8cd6ba3d933e286bce7f48c.tar.gz |
Hotfix for export by yexport generator gradle
Hotfix for export by yexport generator gradle
-rw-r--r-- | build/plugins/java.py | 2 |
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]) |