From 0a5a74f192e25a336d493f92ece048ab1930352f Mon Sep 17 00:00:00 2001 From: "John R. Dennis" Date: Tue, 25 Jun 2019 14:28:51 -0400 Subject: [PATCH] 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 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f9c85aab875..8ef8dcb15d7 100644 --- a/setup.py +++ b/setup.py @@ -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',