Fix incorrect rsync command

This commit is contained in:
Manuel Thalmann 2024-07-15 20:19:06 +02:00
parent c8e133fedc
commit e1c01175df

View file

@ -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