summaryrefslogtreecommitdiff
path: root/bin/locmaint
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-01-18 08:54:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-01-18 08:54:39 -0700
commite7c63359a6140e19db8c139003be3214f5e84d3f (patch)
treef2db4f9c67397b1366d999f3116392c5b0592069 /bin/locmaint
parent62d8de77950db33525a555d0d7e6f2dbacda14d8 (diff)
downloaddotfiles-e7c63359a6140e19db8c139003be3214f5e84d3f.tar.gz
perltidy
Diffstat (limited to 'bin/locmaint')
-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();
}