create-relocatable-package.py: exclude tools/cqlsh
We should exclude tools/cqlsh for relocatable package. fixes #13181 Closes #13183
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user