Skip to content

Commit c1f83cb

Browse files
committed
allow checkout from a local repository
1 parent c60e02d commit c1f83cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def report_hook(index, blksize, size):
149149

150150
urlretrieve(url, target, report_hook)
151151
return target
152-
elif parsed_url.scheme in ('git', 'git+ssh', 'git+http', 'git+https'):
152+
elif parsed_url.scheme in ('git', 'git+file', 'git+ssh', 'git+http', 'git+https'):
153153
if isdir(target):
154154
with current_directory(target):
155155
shprint(sh.git, 'fetch', '--tags')

0 commit comments

Comments
 (0)