We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb1c335 commit 1c3ae20Copy full SHA for 1c3ae20
planemo/shed.py
@@ -123,8 +123,8 @@ def build_tarball(tool_path):
123
fd, temp_path = mkstemp()
124
repo_config = shed_repo_config(tool_path)
125
ignore_list = []
126
- for shed_ignore in repo_config.get('shed_ignore', []):
127
- ignore_list.extend( glob.glob( os.path.join(tool_path, shed_ignore) ) )
+ for shed_ignore in repo_config.get('ignore', []):
+ ignore_list.extend(glob.glob(os.path.join(tool_path, shed_ignore)))
128
try:
129
with tarfile.open(temp_path, "w:gz") as tar:
130
for name in os.listdir(tool_path):
0 commit comments