From af3815c4dbc15feb68ab278e99c52c976432bc2d Mon Sep 17 00:00:00 2001 From: BtbN Date: Tue, 31 Dec 2024 16:37:00 +0100 Subject: [PATCH] Force anonymous svn also during updates --- util/update_scripts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/update_scripts.sh b/util/update_scripts.sh index 73c9daf..bcb3c14 100755 --- a/util/update_scripts.sh +++ b/util/update_scripts.sh @@ -40,7 +40,7 @@ echo "Processing ${scr}" if [[ -n "${CUR_REV}" ]]; then # SVN echo "Checking svn rev for ${CUR_REPO}..." - NEW_REV="$(svn info --password="" "${CUR_REPO}" | grep ^Revision: | cut -d" " -f2 | xargs)" + NEW_REV="$(svn --non-interactive info --username "anonymous" --password="" "${CUR_REPO}" | grep ^Revision: | cut -d" " -f2 | xargs)" echo "Got ${NEW_REV} (current: ${CUR_REV})" if [[ "${NEW_REV}" != "${CUR_REV}" ]]; then