summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/locmaint7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/locmaint b/bin/locmaint
index 20e8f9c3..ad146482 100755
--- a/bin/locmaint
+++ b/bin/locmaint
@@ -352,15 +352,16 @@ sub do_coldbkup {
'<', catfile($ENV{HOME}, "doc", "conf", "coldbkup", "salsa")) {
while (<$fh>) {
m|^https://salsa\.debian\.org/(.+)$| or next;
- my $uri = $&;
+ my $uri = $&;
my $dest = $1;
$uri .= "/" if $uri =~ /\.git\z/;
$uri .= ".git/" unless /\.git\/\z/;
backup_repo($uri, catfile($gitbk, "salsa", $dest));
}
} else {
- say_bold
- ("WARNING: not backing up salsa repos: couldn't read list of repos");
+ say_bold(
+ "WARNING: not backing up salsa repos: couldn't read list of repos"
+ );
get_ack();
}