From 720d433fd9496ff6337838047e847dccee231293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Sun, 3 May 2026 15:00:09 +0200 Subject: [PATCH] damn --- src/apply.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apply.rs b/src/apply.rs index 7c714af..a475483 100644 --- a/src/apply.rs +++ b/src/apply.rs @@ -90,7 +90,7 @@ pub async fn file(file: &File, root: &str, dry_run: bool) -> Result<()> { return Ok(()); } - if file.is_symlink() { + if !file.is_symlink() { set_perms(path, file.mode).await?; }