From 9e472b74e6e8f551d98dc43fb693334153240195 Mon Sep 17 00:00:00 2001 From: "W. Harrison Wright" Date: Thu, 27 Dec 2018 13:07:13 -0600 Subject: [PATCH] Remove unnecessary sys.exit call --- bin/github-backup | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/github-backup b/bin/github-backup index 55b77ae..0245ba1 100755 --- a/bin/github-backup +++ b/bin/github-backup @@ -525,7 +525,6 @@ def check_git_lfs_install(): exit_code = subprocess.call(['git', 'lfs', 'version']) 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.') - sys.exit(1) def retrieve_repositories(args, authenticated_user):