diff options
author | svidyuk <svidyuk@yandex-team.com> | 2025-01-29 07:18:43 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2025-01-29 07:36:34 +0300 |
commit | 113dd3cb3952d8d3b5fdec92013800f2a05e242c (patch) | |
tree | 52fd52d45782c8b32059166dd15b0553b128b7fd /build/scripts/resolve_java_srcs.py | |
parent | f562d654c2fe8cfc407e8a6e596474c3975a2204 (diff) | |
download | ydb-113dd3cb3952d8d3b5fdec92013800f2a05e242c.tar.gz |
Migrate DLL_JAVA to JAR_LIBRARY module
commit_hash:748b6900bfb14824d834071a0ab51d873960eae6
Diffstat (limited to 'build/scripts/resolve_java_srcs.py')
-rw-r--r-- | build/scripts/resolve_java_srcs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/resolve_java_srcs.py b/build/scripts/resolve_java_srcs.py index 4cce49136f..3127886e3c 100644 --- a/build/scripts/resolve_java_srcs.py +++ b/build/scripts/resolve_java_srcs.py @@ -80,7 +80,7 @@ def resolve_java_srcs(srcdir, include_patterns, exclude_patterns, all_resources, return sorted(result['java']), sorted(result['not_java']), sorted(result['kotlin']) -def do_it( +def resolve_sources_and_fill_filelists( directory, sources_file, resources_file, @@ -115,7 +115,7 @@ def cli_main(argv, force_skip_source_jars=False): if force_skip_source_jars and args.all_resources: return - do_it(**vars(args)) + resolve_sources_and_fill_filelists(**vars(args)) if __name__ == '__main__': |