Skip to content

Commit

Permalink
main fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix committed Nov 27, 2023
1 parent 5800a86 commit bfbc17c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cli/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ int main(int argc, char** argv, char** envp){
free(c1);
error (31);
}else {
return operation_main(argv[1], argv+2, argc-2);
ymp_init (argv, argc);
add_process (argv[1], argv+2, argc-2);
ymp_run ();
}
if(has_error()){
error(1);
Expand Down

0 comments on commit bfbc17c

Please sign in to comment.