commit 028eea7ec371ae27c244acc070a5e568ae5e302c
parent f67218558898dbab06a94d3b14f5554aa54f62c4
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Sat, 14 Jan 2017 00:03:11 +0100
SBO::Lib::Repo: don't exclude .tar.gz files when rsyncing. This fixes #53.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SBO-Lib/lib/SBO/Lib/Repo.pm b/SBO-Lib/lib/SBO/Lib/Repo.pm
@@ -324,7 +324,7 @@ sub rsync_sbo_tree {
my @info;
# only slackware versions above 14.1 have an rsync that supports --info=progress2
if (versioncmp(get_slack_version(), '14.1') == 1) { @info = ('--info=progress2'); }
- my @args = ('rsync', @info, '-a', '--exclude=*.tar.gz', '--exclude=*.tar.gz.asc', '--delete', $url);
+ my @args = ('rsync', @info, '-a', '--delete', $url);
return system(@args, $repo_path) == 0;
}