X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/01069f47b0dad2c320d20c1493830ccc0a13da47..6470d48aceaab27bd291303cfbb021b58629a013:/mr diff --git a/mr b/mr index c58c3e1..4235151 100755 --- a/mr +++ b/mr @@ -1085,10 +1085,6 @@ sub loadconfig { $trusted=1; } else { - if (! -e $f) { - return; - } - my $absf=abs_path($f); if ($loaded{$absf}) { return; @@ -1123,6 +1119,10 @@ sub loadconfig { } } + if (! -e $f) { + return; + } + print "mr: loading config $f\n" if $verbose; open($in, "<", $f) || die "mr: open $f: $!\n"; }