Skip to content

Commit 82c935d

Browse files
committed
updating download to not use github plugin
1 parent 1628b03 commit 82c935d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
name="singularity",
88

99
# Version number:
10-
version="0.89",
10+
version="0.90",
1111

1212
# Application author details:
1313
author="Vanessa Sochat",

singularity/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,5 +313,7 @@ def download_repo(repo_url,destination,commit=None):
313313
:param repo_url: the url of the repo to clone from
314314
:param destination: the full path to the destination for the repo
315315
'''
316-
return Repo.clone_from(repo_url, destination)
316+
command = "git clone %s %s" %(repo_url,destination)
317+
os.system(command)
318+
return destination
317319

0 commit comments

Comments
 (0)