From f729cfbcd2cca889d1c3cb37e4e4f0695986704e Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 19 Apr 2026 12:42:52 +0200 Subject: [PATCH] add current script path to @INC --- scripts/runner.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/runner.pl b/scripts/runner.pl index c25bf35..45fa51a 100644 --- a/scripts/runner.pl +++ b/scripts/runner.pl @@ -4,7 +4,9 @@ use strict; use warnings; use diagnostics; -use IO::Socket::INET; +use FindBin; +use lib $FindBin::Bin; + use Util qw(notify notify_file execute_query find_subdirs); use feature 'say';