Skip to content

Commit

Permalink
Merge pull request #1354 from nsls-ii-forge/clone-all-return
Browse files Browse the repository at this point in the history
Clone all return
  • Loading branch information
scopatz authored Jul 2, 2020
2 parents d0be1ae + 3950be2 commit 10d053f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conda_smithy/feedstocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ def clone_all(gh_org, feedstocks_dir):
pool.apply_async(clone_feedstock, args=(repo, feedstocks_dir))
pool.close()
pool.join()
return feedstocks


def feedstocks_clone_all_handle_args(args):
return clone_all(args.organization, args.feedstocks_directory)
clone_all(args.organization, args.feedstocks_directory)


def feedstocks_list_cloned_handle_args(args):
Expand Down
24 changes: 24 additions & 0 deletions news/clone_all_return_repos.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
**Added:**

* <news item>

**Changed:**

* Return type of ``feedstocks.clone_all()`` from ``None`` to list of repositories

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>

0 comments on commit 10d053f

Please sign in to comment.