Skip to content

Commit

Permalink
Merge pull request #279 from datalad/issue-275-aggregate-path-constra…
Browse files Browse the repository at this point in the history
…ints

Fix number of required path arguments in meta-aggregate interface
  • Loading branch information
christian-monch authored Aug 26, 2022
2 parents d8acd6a + 2fe5cdb commit fd22df8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ shallow_clone: false
# Do not build a branch, if a PR with the branch exists
skip_branch_with_pr: true

# Outside of PRs, build only these branches:
branches:
only:
- master
- maint_0.4


environment:
# Do not use `image` as a matrix dimension, to have fine-grained control over
Expand Down
2 changes: 1 addition & 1 deletion datalad_metalad/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class Aggregate(Interface):
doc=r"""
PATH to a sub-dataset whose metadata shall be aggregated into
the topmost dataset (ROOT_DATASET)""",
nargs="*",
nargs="+",
constraints=EnsureStr() | EnsureNone()))

@staticmethod
Expand Down

0 comments on commit fd22df8

Please sign in to comment.