Quellcode durchsuchen

Resolve the symlinks on the root of fs transforms

default_compile_flags
vector-of-bool vor 4 Jahren
Ursprung
Commit
d10384c2fb
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      src/dds/util/fs_transform.cpp

+ 2
- 1
src/dds/util/fs_transform.cpp Datei anzeigen

@@ -252,7 +252,8 @@ void do_write(const struct fs_transformation::write& oper, path_ref root) {

} // namespace

void dds::fs_transformation::apply_to(dds::path_ref root) const {
void dds::fs_transformation::apply_to(dds::path_ref root_) const {
auto root = fs::weakly_canonical(root_);
if (copy) {
do_relocate(*copy, root, true);
}

Laden…
Abbrechen
Speichern