mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibFileSystem: Preserve copy flags when recursing into directories
This commit is contained in:
committed by
Jelle Raaijmakers
parent
482e5e770f
commit
149ac3e674
Notes:
github-actions[bot]
2026-04-13 10:01:59 +00:00
Author: https://github.com/Darshanx256 Commit: https://github.com/LadybirdBrowser/ladybird/commit/149ac3e6746 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8834 Reviewed-by: https://github.com/gmta ✅
@@ -279,7 +279,7 @@ ErrorOr<void> copy_file_or_directory(StringView destination_path, StringView sou
|
||||
return Error::from_errno(EISDIR);
|
||||
}
|
||||
|
||||
return copy_directory(final_destination_path, source_path, source_stat);
|
||||
return copy_directory(final_destination_path, source_path, source_stat, link_mode, preserve_mode);
|
||||
}
|
||||
|
||||
if (link_mode == LinkMode::Allowed)
|
||||
|
||||
Reference in New Issue
Block a user