diff options
-rw-r--r-- | SBO-Lib/lib/SBO/Lib/Repo.pm | 4 | ||||
-rw-r--r-- | man1/sbosnap.1 | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib/Repo.pm b/SBO-Lib/lib/SBO/Lib/Repo.pm index fb4ffda..34da7c9 100644 --- a/SBO-Lib/lib/SBO/Lib/Repo.pm +++ b/SBO-Lib/lib/SBO/Lib/Repo.pm @@ -6,7 +6,7 @@ use warnings; our $VERSION = '2.4'; -use SBO::Lib::Util qw/ %config prompt usage_error get_slack_version script_error open_fh open_read in /; +use SBO::Lib::Util qw/ %config prompt usage_error get_slack_version script_error open_fh open_read in _ERR_DOWNLOAD /; use Cwd; use File::Copy; @@ -300,6 +300,8 @@ sub pull_sbo_tree { $res = git_sbo_tree($url); } + if ($res == 0) { warn "Could not sync from $url.\n"; exit _ERR_DOWNLOAD; } + my $wanted = sub { chown 0, 0, $File::Find::name; }; find($wanted, $repo_path) if -d $repo_path; if ($res and not chk_slackbuilds_txt()) { diff --git a/man1/sbosnap.1 b/man1/sbosnap.1 index 1e6beda..3750330 100644 --- a/man1/sbosnap.1 +++ b/man1/sbosnap.1 @@ -40,6 +40,9 @@ sbosnap can exit with the following codes: .RS 1: a usage error occurred, such as running sbosnap with no command. .RE +.RS +5: error downloading from the repository. +.RE .SH BUGS .P None known, but there may be some. Please report any found to https://github.com/pink-mist/sbotools/issues ; patches are always welcome. |