diff options
author | nalpp <nalpp@yandex-team.ru> | 2022-02-10 16:46:45 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:45 +0300 |
commit | 87f3eb38999df2d3c1cb77f8ffb9c52ec9c516fb (patch) | |
tree | f4ab0734eecf35b22f21952d1aa15496f267a6a3 /build/plugins/scarab_cant_clash.py | |
parent | 198698b9c1e18958addc9682fbfba4576d604757 (diff) | |
download | ydb-87f3eb38999df2d3c1cb77f8ffb9c52ec9c516fb.tar.gz |
Restoring authorship annotation for <nalpp@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/scarab_cant_clash.py')
-rw-r--r-- | build/plugins/scarab_cant_clash.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build/plugins/scarab_cant_clash.py b/build/plugins/scarab_cant_clash.py index 77dc303183..6431d056bf 100644 --- a/build/plugins/scarab_cant_clash.py +++ b/build/plugins/scarab_cant_clash.py @@ -17,10 +17,10 @@ def onacceleo(unit, *args): classpath = ['$SCARAB', ] # XXX special word for ya make to replace following paths with real classpath classpath.append('tools/acceleo') - depends = [] + depends = [] if not unit.get('IDE_MSVS_CALL'): for jar in classpath[1:]: - depends.append(jar) + depends.append(jar) classpath = ':'.join(classpath) @@ -60,7 +60,7 @@ def onacceleo(unit, *args): if kv.get(k): run_java += [k] + kv[k] - if depends: - run_java += ['TOOL'] + depends - + if depends: + run_java += ['TOOL'] + depends + unit.on_run_java(run_java) |