diff --git a/commands/show_dir.c b/commands/show_dir.c index 240524e..6b5e540 100644 --- a/commands/show_dir.c +++ b/commands/show_dir.c @@ -26,7 +26,7 @@ void showDirectory(char *arg[]){ DIR *d; struct dirent *dir; char path[PATH_MAX]; - + d = opendir(arg[1]); if(d == NULL){ printf("Folder not found.\n"); diff --git a/main.c b/main.c index d0fb5e1..3fd234f 100644 --- a/main.c +++ b/main.c @@ -18,7 +18,7 @@ #include "utils/sys_info.h" -#define VERSION "0.1.0" +#define VERSION "0.2.0" #define AUTHOR "netbenix" void exit_app(){