Install hidden galaxy data files (e.g. .travis.yml) (#56005)
The package_data globs in setup.py were missing the necessary glob to install: galaxy/data/default/.travis.yml A Python glob pattern will not by default match a hidden file (i.e. a file basename beginning with a dot). If you want a glob to pick up a hidden file in a directory you must explicitly specify a glob pattern with "/.*". Closes: #1777 Signed-off-by: John Dennis <jdennis@redhat.com>
This commit is contained in:
parent
42a831d42c
commit
0a5a74f192
1 changed files with 1 additions and 0 deletions
1
setup.py
1
setup.py
|
@ -266,6 +266,7 @@ static_setup_params = dict(
|
||||||
'modules/windows/*.ps1',
|
'modules/windows/*.ps1',
|
||||||
'modules/windows/*/*.ps1',
|
'modules/windows/*/*.ps1',
|
||||||
'galaxy/data/*/*.*',
|
'galaxy/data/*/*.*',
|
||||||
|
'galaxy/data/*/.*',
|
||||||
'galaxy/data/*/*/.*',
|
'galaxy/data/*/*/.*',
|
||||||
'galaxy/data/*/*/*.*',
|
'galaxy/data/*/*/*.*',
|
||||||
'galaxy/data/*/tests/inventory',
|
'galaxy/data/*/tests/inventory',
|
||||||
|
|
Loading…
Reference in a new issue