From 24c771aaa8d2b36a85e851e6128165ca0a2da431 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Apr 2018 17:37:07 +0200 Subject: [PATCH] Avoid to make a svn_update at each time. --- kiwixbuild/dependency_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kiwixbuild/dependency_utils.py b/kiwixbuild/dependency_utils.py index 0af71c7..c9fe252 100644 --- a/kiwixbuild/dependency_utils.py +++ b/kiwixbuild/dependency_utils.py @@ -196,6 +196,7 @@ class SvnClone(Source): self.buildEnv.run_command(command, self.buildEnv.source_dir, context) def _svn_update(self, context): + context.try_skip(self.svn_path) context.force_native_build = True self.buildEnv.run_command("svn update", self.svn_path, context)