From e61b6542387c538dce762967b95ed7d226a74878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sun, 21 May 2023 12:14:30 +0200 Subject: [PATCH] Reduce rsync arguments to become more compatible --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3c4e61c4..bd8966ed 100644 --- a/build.gradle +++ b/build.gradle @@ -176,7 +176,7 @@ task processSource(type: Sync) { } task update { - def rsyncArgs = ['-a', '--info=progress2', '--exclude', 'backups'] + def rsyncArgs = ['--archive', '--exclude', 'backups'] def confirm = { ant.input(message: 'Update this installation?', validargs: 'y,n', addproperty: 'continue')