fix: change script execution flow for GitHub Actions compatibility (#166)

- modified 'exit main();' to main();' to ensure the script runs correctly in GitHub Actions for testing Nipe on Ubuntu
This commit is contained in:
priv 2024-06-26 16:27:45 -03:00 committed by GitHub
parent 6aafa3a299
commit 99306ad9f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -45,4 +45,4 @@ sub main {
return print Nipe::Utils::Helper -> new();
}
exit main();
main();