create-relocatable-package.py: exclude tools/cqlsh

We should exclude tools/cqlsh for relocatable package.

fixes #13181

Closes #13183
This commit is contained in:
Takuya ASADA
2023-03-15 18:18:31 +09:00
committed by Avi Kivity
parent d00926a517
commit a79604b0d6

View File

@@ -159,7 +159,8 @@ ar.reloc_add('api')
def exclude_submodules(tarinfo):
if tarinfo.name in ('scylla/tools/jmx',
'scylla/tools/java',
'scylla/tools/python3'):
'scylla/tools/python3',
'scylla/tools/cqlsh'):
return None
return tarinfo
ar.reloc_add('tools', filter=exclude_submodules)