environ #15

Merged
cromer merged 27 commits from environ into master 2021-07-17 22:15:24 -04:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 13d46e8c60 - Show all commits

View File

@ -49,7 +49,9 @@ void loop() {
clean.size = 0;
variables = create_array_list();
atexit(exit_cleanup);
set_array_list(variables, "PWD", get_working_directory());
char *cwd = get_working_directory();
set_array_list(variables, "PWD", cwd);
free(cwd);
while (1) {
print_input_line();