Merge pull request 'change builtin not existing to not be fatal' (#9) from nonfatalerror into master

Reviewed-on: #9
This commit is contained in:
Chris Cromer 2021-06-27 13:34:59 -04:00
commit 16986a212e
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);
}
}