From e1c01175dfefb27481757bfbd5048f1e668854ba Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 15 Jul 2024 20:19:06 +0200 Subject: [PATCH] Fix incorrect `rsync` command --- archiso/scripts/show-diff.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archiso/scripts/show-diff.fish b/archiso/scripts/show-diff.fish index 36beafc8..0a66f24d 100755 --- a/archiso/scripts/show-diff.fish +++ b/archiso/scripts/show-diff.fish @@ -17,7 +17,7 @@ begin git -C "$projectDir" ls-files git -C "$projectDir" ls-files --exclude-standard --others end | \ - rsync -r --include-from=/dev/stdin --exclude={.gitignore,README.md,scripts,LICENSE,valhalla.patch} "$dir/.." "$contextRoot" + rsync --files-from=/dev/stdin --exclude={.gitignore,README.md,scripts,LICENSE,valhalla.patch} "$dir/.." "$contextRoot" end 2>&1 > /dev/null; and git -C "$contextRoot" diff