From abe1e7fa5e510991cce4ad8a337d23b3dd69a264 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sun, 27 Jun 2021 13:32:33 -0400 Subject: [PATCH] change builtin not existing to not be fatal --- src/builtins.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/builtins.c b/src/builtins.c index 94045c6..b483e51 100644 --- a/src/builtins.c +++ b/src/builtins.c @@ -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); } }