Refactored import and export. No user on disk.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4164 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-02-02 02:09:05 +00:00
parent ec52e62908
commit e04d137af5
12 changed files with 288 additions and 155 deletions

View File

@ -257,12 +257,12 @@ static int _tf_command_export(const char* file, int argc, char* argv[])
xoptOption options[] = {
{ "db-path", 'd', offsetof(args_t, db_path), NULL, XOPT_TYPE_STRING, NULL, "Sqlite database path (default: db.sqlite)." },
{ "user", 'u', offsetof(args_t, user), NULL, XOPT_TYPE_STRING, NULL, "User into whose apps will be exported (default: \"cory\")." },
{ "user", 'u', offsetof(args_t, user), NULL, XOPT_TYPE_STRING, NULL, "User into whose apps will be exported (default: \"core\")." },
{ "help", 'h', offsetof(args_t, help), NULL, XOPT_TYPE_BOOL, NULL, "Shows this help message." },
XOPT_NULLOPTION,
};
args_t args = { .user = "cory" };
args_t args = { .user = "core" };
const char** extras = NULL;
int extra_count = 0;
const char *err = NULL;