From 3232c52dfed97250fb8e137a7ff87bff804ab945 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sun, 1 Jun 2025 15:51:01 +0300 Subject: [PATCH] Fix loss after non-existing links --- swg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.48.1