diff options
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/actions.c b/src/actions.c index 680ae68..3cce2f6 100644 --- a/src/actions.c +++ b/src/actions.c @@ -172,7 +172,15 @@ int run_LIST(UserOpt *opt, Conf *conf) { } return 0; } - list_print_lisp(opt->args); + + cklist *paths = list_make_new(); + + list_get_paths(&db, paths); + + //list_print_lisp(paths); + // list_print_python(opt->args); + list_print(paths); + list_free(paths); close_DB(&db); return 0; } |