From 8c9dfdb2f388e8c8c7d527e3f5e8bbf78678f8b8 Mon Sep 17 00:00:00 2001 From: Sergiotarxz Date: Tue, 29 Oct 2024 20:33:00 +0100 Subject: [PATCH] Fixing main.pl --- scripts/main.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/main.pl b/scripts/main.pl index c19a206..e421b15 100644 --- a/scripts/main.pl +++ b/scripts/main.pl @@ -4,6 +4,12 @@ use v5.40.0; use strict; use warnings; +use File::Basename qw/dirname/; +BEGIN { + say dirname(dirname(__FILE__)).'/lib'; +}; +use lib dirname(dirname(__FILE__)).'/lib'; + use Exd::Gui; Exd::Gui->new->start();