change builtin not existing to not be fatal #9

Merged
cromer merged 1 commits from nonfatalerror into master 2021-06-27 13:35:00 -04:00
1 changed files with 0 additions and 2 deletions

View File

@ -46,8 +46,6 @@ void run_builtin(StringArray *args) {
}
else {
fprintf(stderr, "Builtin %s does not exist!\n", args->array[0]);
free_string_array(args);
exit(EXIT_FAILURE);
}
}