From ec84fcfcbb41099af426af05a18e5e7b51cfd403 Mon Sep 17 00:00:00 2001 From: priv <140729444+scriptprivate@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:20:22 -0300 Subject: [PATCH] fix: change script execution flow for GitHub Actions compatibility - modified 'exit main();' to main();' to ensure the script runs correctly in GitHub Actions for testing Nipe on Ubuntu --- nipe.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipe.pl b/nipe.pl index 9126951..66dfc8a 100755 --- a/nipe.pl +++ b/nipe.pl @@ -45,4 +45,4 @@ sub main { return print Nipe::Utils::Helper -> new(); } -exit main(); \ No newline at end of file +main();