diff --git a/include/history.h b/include/history.h index 91bd80e..9273409 100644 --- a/include/history.h +++ b/include/history.h @@ -1,6 +1,8 @@ #ifndef _HISTORY_H #define _HISTORY_H +#include + void append_to_history(char *line); void clear_sub_history(); char *previous_hist_entry(char *line); diff --git a/src/history.c b/src/history.c index a734651..e25f9c9 100644 --- a/src/history.c +++ b/src/history.c @@ -212,6 +212,17 @@ void open_history_file() data_path = strcat(data_path, "/.local/share/"); } + struct stat st = {0}; + if (stat(data_path, &st) < 0) + { + printf("No %s dir, tying to create\n", data_path); + char *buff = malloc(strlen("mkdir -p ") + strlen(data_path) + 1); + buff = strdup("mkdir -p "); + buff = strcat(buff, data_path); + + system(buff); + } + data_path = realloc(data_path, strlen(data_path) + strlen(".mshistory") + 1); data_path = strcat(data_path, ".mshistory");