Remove unnecessary sys.exit call

This commit is contained in:
W. Harrison Wright
2018-12-27 13:07:13 -06:00
parent 4b459f9af8
commit 9e472b74e6

View File

@@ -525,7 +525,6 @@ def check_git_lfs_install():
exit_code = subprocess.call(['git', 'lfs', 'version']) exit_code = subprocess.call(['git', 'lfs', 'version'])
if exit_code != 0: if exit_code != 0:
log_error('The argument --lfs requires you to have Git LFS installed.\nYou can get it from https://git-lfs.github.com.') log_error('The argument --lfs requires you to have Git LFS installed.\nYou can get it from https://git-lfs.github.com.')
sys.exit(1)
def retrieve_repositories(args, authenticated_user): def retrieve_repositories(args, authenticated_user):