From: Sergey Matveev Date: Sun, 1 Jun 2025 12:51:01 +0000 (+0300) Subject: Fix loss after non-existing links X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=3232c52dfed97250fb8e137a7ff87bff804ab945;p=swg.git Fix loss after non-existing links --- diff --git a/swg b/swg index dca444f..9e6dab2 100755 --- a/swg +++ b/swg @@ -129,14 +129,14 @@ for my $pth (keys %Mtimes) { if (exists $ENV{SWG_PRINT_MISSING}) { print "missing $w\n"; } - return; + next; } } else { if (not exists $Mtimes{$w}) { if (exists $ENV{SWG_PRINT_MISSING}) { print "missing $w\n"; } - return; + next; } } $found{$w} = 1;