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>
pull/58358/head
John R. Dennis 5 years ago committed by Matt Davis
parent 42a831d42c
commit 0a5a74f192

@ -266,6 +266,7 @@ static_setup_params = dict(
'modules/windows/*.ps1',
'modules/windows/*/*.ps1',
'galaxy/data/*/*.*',
'galaxy/data/*/.*',
'galaxy/data/*/*/.*',
'galaxy/data/*/*/*.*',
'galaxy/data/*/tests/inventory',

Loading…
Cancel
Save