🏗️」 wip: added the print message

This commit is contained in:
2025-08-11 20:26:21 +02:00
parent 9895a80833
commit 8f1abd7940
5 changed files with 58 additions and 14 deletions

View File

@ -10,7 +10,9 @@ int main(int ac, char **av) {
args_t args;
if (ac > 1) {
int ret = opt_parse(av, &args);
if (ret != EXIT_SUCCESS)
if (ret == -1)
return EXIT_SUCCESS;
else if (ret != EXIT_SUCCESS)
return ret;
else
return EXIT_SUCCESS;