Changeset 9f9d9067 in mainline for uspace/lib/futil/src/futil.c


Ignore:
Timestamp:
2026-04-08T11:23:57Z (4 days ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
6d06bbc
Parents:
8bf4494
git-author:
Jiri Svoboda <jiri@…> (2026-04-08 18:23:43)
git-committer:
Jiri Svoboda <jiri@…> (2026-04-08 11:23:57)
Message:

Allow sysinst to upgrade an existing installation (WIP).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/futil/src/futil.c

    r8bf4494 r9f9d9067  
    11/*
    2  * Copyright (c) 2025 Jiri Svoboda
     2 * Copyright (c) 2026 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    179179                                futil->cb->create_dir(futil->cb_arg, destp);
    180180                        rc = vfs_link_path(destp, KIND_DIRECTORY, NULL);
    181                         if (rc != EOK)
     181                        if (rc != EOK && rc != EEXIST)
    182182                                goto error;
    183183                        rc = futil_rcopy_contents(futil, srcp, destp);
Note: See TracChangeset for help on using the changeset viewer.