From a9b1e7c2ad13ff47acb629bae082d4f96e174f99 Mon Sep 17 00:00:00 2001 From: "Vanveerdeghem, Simon" Date: Fri, 12 Apr 2013 08:35:38 +0200 Subject: [PATCH] fetch2/svn: Do not save authentication Signed-off-by: Simon Vanveerdeghem Signed-off-by: Richard Purdie --- lib/bb/fetch2/svn.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bb/fetch2/svn.py b/lib/bb/fetch2/svn.py index ea5902e05b1..cbf929e9c57 100644 --- a/lib/bb/fetch2/svn.py +++ b/lib/bb/fetch2/svn.py @@ -81,6 +81,8 @@ class Svn(FetchMethod): options = [] + options.append("--no-auth-cache") + if ud.user: options.append("--username %s" % ud.user) -- 2.47.3