aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-12-09 02:37:55 +0100
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-12-09 02:37:55 +0100
commit8dff661d172dfa79693f611890b5c1e993d5509a (patch)
treeeef36a294d362468fd4daab37a8d55dd0fbeaa80
parentc1864ae72759eb79a0a5084f79993669d31eef86 (diff)
downloadsbotools2-8dff661d172dfa79693f611890b5c1e993d5509a.tar.xz
Add missing comma
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index 26f75ed..664c0b9 100644
--- a/SBO-Lib/lib/SBO/Lib.pm
+++ b/SBO-Lib/lib/SBO/Lib.pm
@@ -264,7 +264,7 @@ sub rsync_sbo_tree {
exists $_[0] or script_error('rsync_sbo_tree requires an argument.');
my $url = shift;
$url .= '/' unless $url =~ m!/$!; # make sure $url ends with /
- my @args = ('rsync', '-a', '--exclude=*.tar.gz', '--exclude=*.tar.gz.asc' '--delete', $url);
+ my @args = ('rsync', '-a', '--exclude=*.tar.gz', '--exclude=*.tar.gz.asc', '--delete', $url);
return system(@args, $repo_path) == 0;
}